We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dd0312 commit 18df359Copy full SHA for 18df359
recipe/build_base.sh
@@ -99,7 +99,11 @@ fi
99
100
if [[ "$target_platform" == linux-* ]]; then
101
# For https://docs.python.org/3/howto/perf_profiling.html#how-to-obtain-the-best-results
102
- CFLAGS+=" -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"
+ CFLAGS+=" -fno-omit-frame-pointer"
103
+ if [[ "$target_platform" != linux-ppc64le ]]; then
104
+ # -mno-omit-leaf-frame-pointer is not supported on ppc64le
105
+ CFLAGS+=" -mno-omit-leaf-frame-pointer"
106
+ fi
107
fi
108
109
# Debian uses -O3 then resets it at the end to -O2 in _sysconfigdata.py
0 commit comments