diff options
author | Tim Blechmann <tim.blechmann@gmail.com> | 2019-08-27 18:37:07 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-28 11:31:21 +0100 |
commit | 601c222f867bf3316ee9bdbee6f9eccb000c0042 (patch) | |
tree | b6c6d6daee5f0dd913cffe2323cf342004082d45 /meta | |
parent | 4cac7b155339d71409a82c8048a8361cae06db80 (diff) | |
download | poky-601c222f867bf3316ee9bdbee6f9eccb000c0042.tar.gz |
icecc: blacklist systemtap
compiling systemtap with icecc causes the following build failure
> build/tmp/work/silvermont-64-poky-linux/systemtap/4.0-r0/recipe-sysroot/usr/include/python3.7m/modsupport.h:120:66: note: in definition of macro 'PyModule_AddIntMacro'
> HelperSDT/_HelperSDT.c:145:34: error: 'PyTrace_RETURN' undeclared (first use in this function); did you mean 'PyTrace_C_RETURN'?
(From OE-Core rev: 66719424096eb0d3470647579364efe1556dc7b6)
Signed-off-by: Tim Blechmann <tim@klingt.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/icecc.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index 78a2f7602d..fc82f8de1a 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass | |||
@@ -73,10 +73,13 @@ ICECC_ENV_DEBUG ??= "" | |||
73 | # | 73 | # |
74 | # libgcc-initial - fails with CPP sanity check error if host sysroot contains | 74 | # libgcc-initial - fails with CPP sanity check error if host sysroot contains |
75 | # cross gcc built for another target tune/variant | 75 | # cross gcc built for another target tune/variant |
76 | # systemtap - _HelperSDT.c undefs macros and uses the identifiers in macros emitting | ||
77 | # inline assembly | ||
76 | # target-sdk-provides-dummy - ${HOST_PREFIX} is empty which triggers the "NULL | 78 | # target-sdk-provides-dummy - ${HOST_PREFIX} is empty which triggers the "NULL |
77 | # prefix" error. | 79 | # prefix" error. |
78 | ICECC_SYSTEM_PACKAGE_BL += "\ | 80 | ICECC_SYSTEM_PACKAGE_BL += "\ |
79 | libgcc-initial \ | 81 | libgcc-initial \ |
82 | systemtap \ | ||
80 | target-sdk-provides-dummy \ | 83 | target-sdk-provides-dummy \ |
81 | " | 84 | " |
82 | 85 | ||