summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-08-15 18:26:11 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-01 21:19:45 +0100
commit4fc8836379b3a4534c392a29b4bf70000b632232 (patch)
tree2f8c9c7d449059f6db06ee5355db20a4677acd4d /meta/recipes-core
parent0b1ea952adc45edc145ef687f9da62e350b8fd8b (diff)
downloadast2050-yocto-poky-4fc8836379b3a4534c392a29b4bf70000b632232.zip
ast2050-yocto-poky-4fc8836379b3a4534c392a29b4bf70000b632232.tar.gz
glibc: Consider adding -Wno-error in cases when not using -O2
glibc has recently turned on Werror globally which is good but then not all option combos are well tested so there still remains cleanup needed when not using -O2, so lets just disable Werror in such cases, until fixed upstream Change-Id: I2d491c360a15b0752c97ff77ee0faaeede6e8d2a (From OE-Core master rev: 52a90e8e592ddd228939e15d7fd0d69f3c1e816f) (From OE-Core rev: 6f358676c33854cd6b02f41232875cf779cde1b8) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/glibc/glibc.inc10
1 files changed, 9 insertions, 1 deletions
diff --git a/meta/recipes-core/glibc/glibc.inc b/meta/recipes-core/glibc/glibc.inc
index da56bc9..1c2f1e8 100644
--- a/meta/recipes-core/glibc/glibc.inc
+++ b/meta/recipes-core/glibc/glibc.inc
@@ -12,12 +12,20 @@ TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TCBOOTSTRAP}"
# entire image as -O0, we override it with -O2 here and give a note about it.
def get_optimization(d):
selected_optimization = d.getVar("SELECTED_OPTIMIZATION", True)
- if bb.utils.contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
+ if bb.utils.contains("SELECTED_OPTIMIZATION", "-O2", "x", "", d) == "x":
+ return selected_optimization
+ elif bb.utils.contains("SELECTED_OPTIMIZATION", "-O", "x", "", d) == "x":
+ bb.note("glibc can't be built with -O, -O -Wno-error will be used instead.")
+ return selected_optimization.replace("-O", "-O -Wno-error")
+ elif bb.utils.contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
bb.note("glibc can't be built with -O0, -O2 will be used instead.")
return selected_optimization.replace("-O0", "-O2")
elif bb.utils.contains("SELECTED_OPTIMIZATION", "-Os", "x", "", d) == "x":
bb.note("glibc can't be built with -Os, -Os -Wno-error will be used instead.")
return selected_optimization.replace("-Os", "-Os -Wno-error")
+ elif bb.utils.contains("SELECTED_OPTIMIZATION", "-O1", "x", "", d) == "x":
+ bb.note("glibc can't be built with -O1, -O1 -Wno-error will be used instead.")
+ return selected_optimization.replace("-O1", "-O1 -Wno-error")
return selected_optimization
SELECTED_OPTIMIZATION := "${@get_optimization(d)}"
OpenPOWER on IntegriCloud