summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2023-08-30 12:48:00 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-02 18:23:05 +0100
commit81b2eedb699069e69b188b22099f2324f700c293 (patch)
tree35826f589af5bba5bc31ae9a2e8bd71d3462267d /meta
parentd51176429de50ef0f136b0c936797c87f244125b (diff)
downloadpoky-81b2eedb699069e69b188b22099f2324f700c293.tar.gz
stress-ng: disable DEBUG_BUILD
We get do_compile error when DEBUG_BUILD is enabled: error: inlining failed in call to 'always_inline' '_mm512_storeu_si512': target specific option mismatch To reproduce the issue, set the following lines in local.conf and then `bitbake stress-ng'. MACHINE = "qemux86-64" DEBUG_BUILD = "1" A new issue is filed for stress-ng to track it: https://github.com/ColinIanKing/stress-ng/issues/315 (From OE-Core rev: 3270f6f3bcb7811fd5e576808c086428f1a8c568) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-extended/stress-ng/stress-ng_0.16.04.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.16.04.bb b/meta/recipes-extended/stress-ng/stress-ng_0.16.04.bb
index 6e5665cc3b..af8433975b 100644
--- a/meta/recipes-extended/stress-ng/stress-ng_0.16.04.bb
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.16.04.bb
@@ -31,3 +31,6 @@ do_install() {
31 oe_runmake DESTDIR=${D} BINDIR=${bindir} install 31 oe_runmake DESTDIR=${D} BINDIR=${bindir} install
32 ln -s stress-ng ${D}${bindir}/stress 32 ln -s stress-ng ${D}${bindir}/stress
33} 33}
34
35# upstream issue: https://github.com/ColinIanKing/stress-ng/issues/315
36DEBUG_BUILD = "0"