aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
Diffstat (limited to 'java')
-rw-r--r--java/INSTALL9
1 files changed, 9 insertions, 0 deletions
diff --git a/java/INSTALL b/java/INSTALL
index b331d09d9ff..37f7048b89d 100644
--- a/java/INSTALL
+++ b/java/INSTALL
@@ -129,6 +129,15 @@ so:
129 129
130 ./configure --with-ndk-cxx=/path/to/toolchain/bin/i686-linux-android-g++ 130 ./configure --with-ndk-cxx=/path/to/toolchain/bin/i686-linux-android-g++
131 131
132Some versions of the NDK have a bug, where GCC fails to locate
133``stddef.h'' after being copied to a standalone toolchain. To work
134around this problem (which normally exhibits itself when building C++
135code), add:
136
137 -isystem /path/to/toolchain/include/c++/4.9.x
138
139to ANDROID_CFLAGS.
140
132 141
133DEBUG AND RELEASE BUILDS 142DEBUG AND RELEASE BUILDS
134 143