From 96decc21cb1c0c252d8f49817bdd0e987fe997ee Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Mon, 16 Jan 2017 11:49:20 +0100 Subject: [PATCH] python: Fix build issue when using clang --- packages/python/build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/python/build.sh b/packages/python/build.sh index 3b1957311..293a50d85 100644 --- 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 () {