chiark
/
gitweb
/
~mdw
/
termux-packages
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3265c61
)
python: Fix build issue when using clang
author
Fredrik Fornwall
<fredrik@fornwall.net>
Mon, 16 Jan 2017 10:49:20 +0000
(11:49 +0100)
committer
Fredrik Fornwall
<fredrik@fornwall.net>
Mon, 16 Jan 2017 10:49:20 +0000
(11:49 +0100)
packages/python/build.sh
patch
|
blob
|
blame
|
history
diff --git
a/packages/python/build.sh
b/packages/python/build.sh
index 3b19573119b33b34157b91fe82b279f5ff7966d6..293a50d859dd7d309de6df6a1b0b0629b3343817 100644
(file)
--- a/
packages/python/build.sh
+++ b/
packages/python/build.sh
@@
-45,6
+45,12
@@
termux_step_pre_configure() {
# Put the host-built python in path:
export TERMUX_ORIG_PATH=$PATH
export PATH=$TERMUX_PKG_HOSTBUILD_DIR:$PATH
+
+ # Needed when building with clang, as setup.py only probes
+ # gcc for include paths when finding headers for determining
+ # if extension modules should be built (specifically, the
+ # zlib extension module is not built without this):
+ CPPFLAGS+=" -I$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr/include"
}
termux_step_post_configure () {