diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-03-02 21:07:13 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-06 23:52:56 +0000 |
commit | 421e8ac60ff6eb87e66ebeab6f14d74216386578 (patch) | |
tree | 6e83aff33bd08365808cd916d0e73364b7bc6791 /meta/recipes-devtools/gcc | |
parent | 59e207ff6dd4b50a8905e14bc9292cf2794f4e7a (diff) | |
download | openembedded-core-421e8ac60ff6eb87e66ebeab6f14d74216386578.tar.gz openembedded-core-421e8ac60ff6eb87e66ebeab6f14d74216386578.tar.bz2 openembedded-core-421e8ac60ff6eb87e66ebeab6f14d74216386578.zip |
gcc-runtime.inc: disable libitm for little endian MIPS too
libitm is already disabled for big endian MIPS, but needs to be
disabled for little endian MIPS targets too.
Signed-off-by: Andre McCurdy <armccurdy@gmail.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-runtime.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index 707db37cb3..1c3dd54e54 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc @@ -12,7 +12,9 @@ EXTRA_OECONF_append_linuxstdbase = " --enable-clocale=gnu" RUNTIMELIBITM = "libitm" RUNTIMELIBITM_mips = "" +RUNTIMELIBITM_mipsel = "" RUNTIMELIBITM_mips64 = "" +RUNTIMELIBITM_mips64el = "" RUNTIMETARGET = "libssp libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \ ${@bb.utils.contains_any('FORTRAN', [',fortran',',f77'], 'libquadmath', '', d)} \ |