aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <jimw@sifive.com>2020-12-03 20:31:28 -0800
committerGitHub <noreply@github.com>2020-12-03 20:31:28 -0800
commit168878203fa440a799b3c502af2a5b7f0f0eed7e (patch)
tree7a37b5bbcf5a66950f6c67fa1f7212cb2ed88746
parent049727981272722df13d2a593adb6947f0631ede (diff)
parent888b0bd07d1e51b2d6893dc3a87027c9456c8746 (diff)
downloadriscv-gnu-toolchain-168878203fa440a799b3c502af2a5b7f0f0eed7e.zip
riscv-gnu-toolchain-168878203fa440a799b3c502af2a5b7f0f0eed7e.tar.gz
riscv-gnu-toolchain-168878203fa440a799b3c502af2a5b7f0f0eed7e.tar.bz2
Merge pull request #794 from CARV-ICS-FORTH/musl-disable-libsanitizer
Disable libsanitizer when building the musl-based toolchain
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index cedcbfb..270164a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -704,6 +704,8 @@ stamps/build-gcc-musl-stage2: $(GCC_SRCDIR) stamps/build-musl-linux \
stamps/build-musl-linux-headers
rm -rf $@ $(notdir $@)
mkdir $(notdir $@)
+ # Disable libsanitizer for now
+ # https://github.com/google/sanitizers/issues/1080
cd $(notdir $@) && $</configure \
--target=$(MUSL_TUPLE) \
$(CONFIGURE_HOST) \
@@ -716,6 +718,7 @@ stamps/build-gcc-musl-stage2: $(GCC_SRCDIR) stamps/build-musl-linux \
--disable-libmudflap \
--disable-libssp \
--disable-libquadmath \
+ --disable-libsanitizer \
--disable-nls \
--disable-bootstrap \
--src=$(gccsrcdir) \