summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-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 da56bc90a1..1c2f1e86ca 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}"
12# entire image as -O0, we override it with -O2 here and give a note about it. 12# entire image as -O0, we override it with -O2 here and give a note about it.
13def get_optimization(d): 13def get_optimization(d):
14 selected_optimization = d.getVar("SELECTED_OPTIMIZATION", True) 14 selected_optimization = d.getVar("SELECTED_OPTIMIZATION", True)
15 if bb.utils.contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x": 15 if bb.utils.contains("SELECTED_OPTIMIZATION", "-O2", "x", "", d) == "x":
16 return selected_optimization
17 elif bb.utils.contains("SELECTED_OPTIMIZATION", "-O", "x", "", d) == "x":
18 bb.note("glibc can't be built with -O, -O -Wno-error will be used instead.")
19 return selected_optimization.replace("-O", "-O -Wno-error")
20 elif bb.utils.contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
16 bb.note("glibc can't be built with -O0, -O2 will be used instead.") 21 bb.note("glibc can't be built with -O0, -O2 will be used instead.")
17 return selected_optimization.replace("-O0", "-O2") 22 return selected_optimization.replace("-O0", "-O2")
18 elif bb.utils.contains("SELECTED_OPTIMIZATION", "-Os", "x", "", d) == "x": 23 elif bb.utils.contains("SELECTED_OPTIMIZATION", "-Os", "x", "", d) == "x":
19 bb.note("glibc can't be built with -Os, -Os -Wno-error will be used instead.") 24 bb.note("glibc can't be built with -Os, -Os -Wno-error will be used instead.")
20 return selected_optimization.replace("-Os", "-Os -Wno-error") 25 return selected_optimization.replace("-Os", "-Os -Wno-error")
26 elif bb.utils.contains("SELECTED_OPTIMIZATION", "-O1", "x", "", d) == "x":
27 bb.note("glibc can't be built with -O1, -O1 -Wno-error will be used instead.")
28 return selected_optimization.replace("-O1", "-O1 -Wno-error")
21 return selected_optimization 29 return selected_optimization
22 30
23SELECTED_OPTIMIZATION := "${@get_optimization(d)}" 31SELECTED_OPTIMIZATION := "${@get_optimization(d)}"