diff options
author | Mikko Ylinen <mikko.ylinen@linux.intel.com> | 2017-03-08 14:57:40 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-10 10:15:45 +0000 |
commit | 5111bd5e666408dbca7db0e6d664fe0103744253 (patch) | |
tree | 60d8669a5af453d97b4f1b630e353df6067fec1e /meta/recipes-devtools/gcc/gcc-runtime.inc | |
parent | 19b770d56d8a6db48723e0754e224aaf6de683a3 (diff) | |
download | openembedded-core-5111bd5e666408dbca7db0e6d664fe0103744253.tar.gz openembedded-core-5111bd5e666408dbca7db0e6d664fe0103744253.tar.bz2 openembedded-core-5111bd5e666408dbca7db0e6d664fe0103744253.zip |
gcc-runtime: Enable libmpx for x86-64
Intel MPX was recently enabled on x86 (_append_x86) but that didn't
enable it on x86-64. Explicitly enable libmpx on x86-64 too.
Signed-off-by: Mikko Ylinen <mikko.ylinen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-runtime.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-runtime.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index a5be491ad3..0dc405c591 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc @@ -25,6 +25,7 @@ RUNTIMETARGET = "libssp libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \ ${@bb.utils.contains_any('FORTRAN', [',fortran',',f77'], 'libquadmath', '', d)} \ " RUNTIMETARGET_append_x86 = " libmpx" +RUNTIMETARGET_append_x86-64 = " libmpx" RUNTIMETARGET_remove_libc-musl = "libmpx" # libiberty @@ -146,6 +147,12 @@ PACKAGES_append_x86 = "\ libmpx-staticdev \ " +PACKAGES_append_x86-64 = "\ + libmpx \ + libmpx-dev \ + libmpx-staticdev \ +" + # The base package doesn't exist, so we clear the recommends. RRECOMMENDS_${PN}-dbg = "" |