diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-10-05 14:59:45 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-10-05 14:59:45 +0000 |
commit | 749d865aa4e6fa085e9b72cc5cfe11519f2ba3bd (patch) | |
tree | f73964caa33312377d2415ce636b8acc1b405ab1 /toolchain/gcc/minimal/Makefile | |
parent | 063074cf0ced47cfd741681e5ab0fc2ea31f93ed (diff) | |
download | mtk-20170518-749d865aa4e6fa085e9b72cc5cfe11519f2ba3bd.zip mtk-20170518-749d865aa4e6fa085e9b72cc5cfe11519f2ba3bd.tar.gz mtk-20170518-749d865aa4e6fa085e9b72cc5cfe11519f2ba3bd.tar.bz2 |
gcc: gcc 4.9.x disable libsanitize
gcc 4.9.x enables building of libsanitize
- libsanitize needs some headers that are not available
in uclibc (netrom/netrom.h)
according to buildroot project:
- build fail with musl
- need wordexp with uclibc which increases uclibc size
http://git.buildroot.net/buildroot/commit/?id=5f4d658d888b539de9a6247ae5b1a0999de5d4ec
http://git.buildroot.net/buildroot/commit/?id=554e29e267e6b36a0fd78c82cbad2c82d939eb7f
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 42767
Diffstat (limited to 'toolchain/gcc/minimal/Makefile')
-rw-r--r-- | toolchain/gcc/minimal/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolchain/gcc/minimal/Makefile b/toolchain/gcc/minimal/Makefile index a2564a1..0344e1a 100644 --- a/toolchain/gcc/minimal/Makefile +++ b/toolchain/gcc/minimal/Makefile @@ -6,6 +6,7 @@ GCC_CONFIGURE += \ --with-newlib \ --without-headers \ --enable-languages=c \ + --disable-libsanitizer \ --disable-libssp \ --disable-shared \ --disable-threads |