diff options
author | Sven Gothel <[email protected]> | 2011-08-04 08:34:29 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-04 08:34:29 +0200 |
commit | 847d4d93f28423d9f4bc1f3c4e02c936f90d0798 (patch) | |
tree | ec4b88e9ca9520707a7c45fda6a6c7841348cf92 /make/lib | |
parent | d522b4dffd5d569c4116275d6ef278bb0741c79d (diff) |
Add define '__X11__', is isX11 ; Android attach system include folders via -isystem (which come after -I)
Diffstat (limited to 'make/lib')
-rw-r--r-- | make/lib/gluegen-cpptasks-android-armv7.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/make/lib/gluegen-cpptasks-android-armv7.xml b/make/lib/gluegen-cpptasks-android-armv7.xml index 38b42f2..f2ed4cf 100644 --- a/make/lib/gluegen-cpptasks-android-armv7.xml +++ b/make/lib/gluegen-cpptasks-android-armv7.xml @@ -26,8 +26,10 @@ <compilerarg value="${env.TARGET_TOOL_PATH}/libexec/gcc/${env.TARGET_ARCH}/${env.GCC_VERSION}" /> <compilerarg value="-march=armv7-a" /> <compilerarg value="-fpic" /> - <compilerarg value="${env.NDK_INCLUDE}" /> - <compilerarg value="-I${env.TARGET_TOOL_PATH}/lib/gcc/${env.TARGET_ARCH}/${env.GCC_VERSION}/include" /> <!--inclides stdarg.h --> + <compilerarg value="-isystem" /> + <compilerarg value="${env.TARGET_OS_PATH}/include"/> + <compilerarg value="-isystem" /> + <compilerarg value="${env.TARGET_TOOL_PATH}/lib/gcc/${env.TARGET_ARCH}/${env.GCC_VERSION}/include" /> <!--includes stdarg.h --> <defineset> <define name="__unix__"/> <define name="ANDROID" /> |