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/classes | |
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/classes')
-rw-r--r-- | meta/classes/crosssdk.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/nativesdk.bbclass | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/crosssdk.bbclass b/meta/classes/crosssdk.bbclass index 261a37465e..7a10c596eb 100644 --- a/meta/classes/crosssdk.bbclass +++ b/meta/classes/crosssdk.bbclass | |||
@@ -30,6 +30,6 @@ do_populate_sysroot[stamp-extra-info] = "" | |||
30 | do_packagedata[stamp-extra-info] = "" | 30 | do_packagedata[stamp-extra-info] = "" |
31 | 31 | ||
32 | # Need to force this to ensure consitency accross architectures | 32 | # Need to force this to ensure consitency accross architectures |
33 | EXTRA_OECONF_FPU = "" | 33 | EXTRA_OECONF_GCC_FLOAT = "" |
34 | 34 | ||
35 | USE_NLS = "no" | 35 | USE_NLS = "no" |
diff --git a/meta/classes/nativesdk.bbclass b/meta/classes/nativesdk.bbclass index 7f94258bf1..37c9f79598 100644 --- a/meta/classes/nativesdk.bbclass +++ b/meta/classes/nativesdk.bbclass | |||
@@ -42,7 +42,7 @@ TARGET_CC_ARCH = "${SDK_CC_ARCH}" | |||
42 | TARGET_LD_ARCH = "${SDK_LD_ARCH}" | 42 | TARGET_LD_ARCH = "${SDK_LD_ARCH}" |
43 | TARGET_AS_ARCH = "${SDK_AS_ARCH}" | 43 | TARGET_AS_ARCH = "${SDK_AS_ARCH}" |
44 | TARGET_FPU = "" | 44 | TARGET_FPU = "" |
45 | EXTRA_OECONF_FPU = "" | 45 | EXTRA_OECONF_GCC_FLOAT = "" |
46 | 46 | ||
47 | CPPFLAGS = "${BUILDSDK_CPPFLAGS}" | 47 | CPPFLAGS = "${BUILDSDK_CPPFLAGS}" |
48 | CFLAGS = "${BUILDSDK_CFLAGS}" | 48 | CFLAGS = "${BUILDSDK_CFLAGS}" |