diff options
author | Peter A. Bigot <pab@pabigot.com> | 2014-08-14 14:05:56 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-15 18:21:50 +0100 |
commit | 14a2d1eaa161622eb00a26474bd127b0856f7358 (patch) | |
tree | eb1cf8e7a8af7914d523d18de88a04a9b9e42775 /meta/recipes-devtools/gcc/gcc-configure-common.inc | |
parent | 79e235c5ee4fad9f2ab86c80965724dfcf397f46 (diff) | |
download | poky-14a2d1eaa161622eb00a26474bd127b0856f7358.tar.gz |
sdk: change EXTRA_OECONF_FPU to EXTRA_OECONF_GCC_FLOAT
This variable is used to ensure the proper version of --with-float=FOO
is passed to gcc's configure script. gcc also has a --with-fpu=FOO
option that means something different. To avoid confusion, change the
names to be consistent.
(From OE-Core rev: c17d883fa99b6967d83c3796d22fc0c1dbe704e6)
Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-configure-common.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-configure-common.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index 9c4e98694b..3f9d03f773 100644 --- a/meta/recipes-devtools/gcc/gcc-configure-common.inc +++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc | |||
@@ -44,7 +44,7 @@ EXTRA_OECONF = "\ | |||
44 | --without-local-prefix \ | 44 | --without-local-prefix \ |
45 | ${OPTSPACE} \ | 45 | ${OPTSPACE} \ |
46 | ${EXTRA_OECONF_BASE} \ | 46 | ${EXTRA_OECONF_BASE} \ |
47 | ${EXTRA_OECONF_FPU} \ | 47 | ${EXTRA_OECONF_GCC_FLOAT} \ |
48 | ${EXTRA_OECONF_PATHS} \ | 48 | ${EXTRA_OECONF_PATHS} \ |
49 | ${@get_gcc_mips_plt_setting(bb, d)} \ | 49 | ${@get_gcc_mips_plt_setting(bb, d)} \ |
50 | ${@get_gcc_multiarch_setting(bb, d)} \ | 50 | ${@get_gcc_multiarch_setting(bb, d)} \ |
@@ -63,7 +63,7 @@ EXTRA_OECONF_append_libc-uclibc = " --enable-__cxa_atexit" | |||
63 | EXTRA_OECONF_append_mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 63 | EXTRA_OECONF_append_mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
64 | EXTRA_OECONF_append_mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 64 | EXTRA_OECONF_append_mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
65 | 65 | ||
66 | EXTRA_OECONF_FPU ??= "" | 66 | EXTRA_OECONF_GCC_FLOAT ??= "" |
67 | CPPFLAGS = "" | 67 | CPPFLAGS = "" |
68 | 68 | ||
69 | # powerpc needs this to comply with the ABI | 69 | # powerpc needs this to comply with the ABI |