diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-07-30 09:40:41 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-07-30 09:40:41 +0300 |
commit | 291dcae246de9e32d9ca5926be463ad910c5bd1e (patch) | |
tree | 64f00eb5ac5111d247b1b9e132cc2e0a5530e7cf /configure.in | |
parent | 43a20bf6fc3213c38a77a2941a4999313bdfefbe (diff) |
Add comment about NDK r8b
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 6782015b9168..6d9699d905a9 100644 --- a/configure.in +++ b/configure.in @@ -134,6 +134,12 @@ if test -n "$with_android_ndk"; then # What if the NDK at some point starts including several toolchains for different # gcc versions (like some 3rd-party improved NDK builds already do)? # Then the use of a wildcard below will break. + + # That indeed happened with NDK r8b, which has both gcc 4.4.3 and 4.6 + # -based toolchains. The latter has interesting new features, like the + # possiblity to use the gold linker, which should bring a nice speedup to + # linking especially our libmerged. Work to support that in progress. Until + # that is done, please use no newer NDK than r8. if test "$with_android_arch" = "arm"; then ANDROID_ABI_PREBUILT_BIN=`echo $ANDROID_NDK_HOME/toolchains/$with_android_arch-linux*/prebuilt/*/bin` android_gcc_prefix=arm-linux-androideabi |