@@ -19,7 +19,7 @@ SRC_URI = "\
19
19
file://ptest_result.py \
20
20
"
21
21
22
- SRCREV = "c7f2c5b30cb60ea72208aa4d3e513e2b02c3aa5a "
22
+ SRCREV = "72a62c15cb17dc18fe68fb22d350c9fa43362e6d "
23
23
24
24
S = "${WORKDIR} /git"
25
25
@@ -30,6 +30,8 @@ PACKAGECONFIG ?= "\
30
30
${@ bb . utils . contains ('PTEST_ENABLED' , '1' , 'with-tests' , '' , d )} \
31
31
"
32
32
33
+ PACKAGECONFIG :append :x86 -64 = " ${@ bb . utils . contains ('PTEST_ENABLED' , '1' , 'sanitize' , '' , d )}"
34
+
33
35
PACKAGECONFIG [pulseaudio ] = "-DPULSEAUDIO=TRUE, -DPULSEAUDIO=FALSE, pulseaudio"
34
36
35
37
# CMAKE_CROSSCOMPILING=OFF will enable build of unit tests
@@ -89,7 +91,7 @@ do_install_ptest () {
89
91
# this is related to this issue
90
92
# https://github.com/aws/aws-sdk-cpp/issues/2242
91
93
# nooelint: oelint.vars.insaneskip:INSANE_SKIP
92
- INSANE_SKIP :${PN} -src :append :class -target : arm = " buildpaths"
94
+ INSANE_SKIP :${PN} -src :append :class -target = " buildpaths"
93
95
94
96
# -fsanitize=address does cause this
95
97
# nooelint: oelint.vars.insaneskip:INSANE_SKIP
@@ -99,3 +101,6 @@ OECMAKE_CXX_FLAGS += "${@bb.utils.contains('PACKAGECONFIG', 'sanitize', '-fsanit
99
101
100
102
# nooelint: oelint.vars.insaneskip:INSANE_SKIP
101
103
INSANE_SKIP :${PN} -dev += "buildpaths"
104
+
105
+ # there is an issue for the parallel build with x86-64 hitting an ressource limit, thus limiting the parallel build to half of cpu cores
106
+ PARALLEL_MAKE :x86 -64 = "-j${@ int (os . cpu_count ()/2 )}"
0 commit comments