diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-05-11 10:35:33 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-13 13:40:53 +0100 |
commit | d7799a17d5e802db3f8d16bdc824aae81538e675 (patch) | |
tree | 0f7c9facd662bcdd7ce4fb86cae5ed760f090af8 /meta/recipes-devtools | |
parent | f07c2430903601e9b4462eb09e89a341d5f8f4af (diff) | |
download | openembedded-core-d7799a17d5e802db3f8d16bdc824aae81538e675.tar.gz openembedded-core-d7799a17d5e802db3f8d16bdc824aae81538e675.tar.bz2 openembedded-core-d7799a17d5e802db3f8d16bdc824aae81538e675.zip |
libgcc: Ensure that gcc configure options are passed to libgcc too
libgcc uses certain options from EXTRA_OECONF as well, curently we are
ignoring them, as a result we do not configure libgcc to match cross gcc
in some cases e.g. ppc/musl should have used 64bit long doubles but
it went for 128-ldbls which is default, works on glibc but not on musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/libgcc-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/libgcc-common.inc b/meta/recipes-devtools/gcc/libgcc-common.inc index e6d31bc305..cb1237cc7a 100644 --- a/meta/recipes-devtools/gcc/libgcc-common.inc +++ b/meta/recipes-devtools/gcc/libgcc-common.inc @@ -1,6 +1,6 @@ BPN = "libgcc" -require gcc-shared-source.inc +require gcc-configure-common.inc INHIBIT_DEFAULT_DEPS = "1" |