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-24 17:54:27 +0100 |
commit | d70c5cb9caa81b096b320fe91e007efc127e2ae3 (patch) | |
tree | 9c93e64b77e07570b60d07fb270e42326cf349b3 /meta/recipes-devtools | |
parent | 66dca4b0cc8ffa20134371b0116a358f7c34e9bc (diff) | |
download | poky-d70c5cb9caa81b096b320fe91e007efc127e2ae3.tar.gz |
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]
(From OE-Core rev: 555e8d110435cf4af1e1ab4699c2fa55898e9d80)
Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-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 = "\ | |||
98 | --with-cloog=no \ | 98 | --with-cloog=no \ |
99 | --enable-checking=release \ | 99 | --enable-checking=release \ |
100 | --enable-cheaders=c_global \ | 100 | --enable-cheaders=c_global \ |
101 | --without-isl \ | ||
101 | " | 102 | " |
102 | 103 | ||
103 | EXTRA_OECONF_INITIAL = "\ | 104 | EXTRA_OECONF_INITIAL = "\ |
@@ -109,6 +110,7 @@ EXTRA_OECONF_INITIAL = "\ | |||
109 | --disable-lto \ | 110 | --disable-lto \ |
110 | --disable-plugin \ | 111 | --disable-plugin \ |
111 | --enable-decimal-float=no \ | 112 | --enable-decimal-float=no \ |
113 | --without-isl \ | ||
112 | " | 114 | " |
113 | 115 | ||
114 | EXTRA_OECONF_append_libc-uclibc = " --disable-decimal-float " | 116 | EXTRA_OECONF_append_libc-uclibc = " --disable-decimal-float " |