From 900b6d23bbe6381ce59cffc26bc799f3d880e2cf Mon Sep 17 00:00:00 2001 From: Maxwell175 Date: Fri, 23 Feb 2024 21:31:29 -0500 Subject: [PATCH] Specify our include path in CPPFLAS and CXXFLAGS too --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index f049467a7100a8..d93aa394f17bc8 100755 --- a/build.sh +++ b/build.sh @@ -29,6 +29,8 @@ set -x # happens to also delete all the static libraries that we built. export "PREFIX=$(pwd)/../Nuitka-Python-Deps" export "CFLAGS=-I${PREFIX}/include -fPIC" +export "CXXFLAGS=-I${PREFIX}/include -fPIC" +export "CPPFLAGS=-I${PREFIX}/include" export "LDFLAGS=-L${PREFIX}/lib" export "PKG_CONFIG_PATH=${PREFIX}/lib/pkgconfig"