diff options
author | Richard Tollerton <rich.tollerton@ni.com> | 2015-09-23 09:36:03 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-23 22:07:21 +0100 |
commit | 555e8d110435cf4af1e1ab4699c2fa55898e9d80 (patch) | |
tree | e900bff598d1d1cf5ef1c746a098440ea84267d0 /meta/recipes-devtools/gcc | |
parent | 24d1ba834e79fa5d625e6fd0890cebfb548dce81 (diff) | |
download | openembedded-core-555e8d110435cf4af1e1ab4699c2fa55898e9d80.tar.gz openembedded-core-555e8d110435cf4af1e1ab4699c2fa55898e9d80.tar.bz2 openembedded-core-555e8d110435cf4af1e1ab4699c2fa55898e9d80.zip |
gcc-5.2: disable isl
We presently don't package isl. Unfortunately, if the host is already
using gcc-5.2 (as is presently the case on Arch Linux), configure will
autodetect the host's libisl, and do_compile will break because the
system isl headers aren't pulled in. In lieu of packaging isl, disable
it for now.
[YOCTO #8376]
Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-5.2.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-5.2.inc b/meta/recipes-devtools/gcc/gcc-5.2.inc index f691f582d7..f6673e6a35 100644 --- a/meta/recipes-devtools/gcc/gcc-5.2.inc +++ b/meta/recipes-devtools/gcc/gcc-5.2.inc @@ -98,6 +98,7 @@ EXTRA_OECONF_BASE = "\ --with-cloog=no \ --enable-checking=release \ --enable-cheaders=c_global \ + --without-isl \ " EXTRA_OECONF_INITIAL = "\ @@ -109,6 +110,7 @@ EXTRA_OECONF_INITIAL = "\ --disable-lto \ --disable-plugin \ --enable-decimal-float=no \ + --without-isl \ " EXTRA_OECONF_append_libc-uclibc = " --disable-decimal-float " |