diff options
author | 2010-12-27 12:26:01 -0800 | |
---|---|---|
committer | 2010-12-27 12:26:16 -0800 | |
commit | 1dea9bdc1a396e3f55ef91ea622043cc5010ac83 (patch) | |
tree | f24687f97a4f3f10ba8175a4bfec1ed00a0ab7e3 /native/Android.mk | |
parent | 0d0150676c248df3fbca7e31a2df7edec24c884f (diff) | |
download | latinime-1dea9bdc1a396e3f55ef91ea622043cc5010ac83.tar.gz latinime-1dea9bdc1a396e3f55ef91ea622043cc5010ac83.tar.xz latinime-1dea9bdc1a396e3f55ef91ea622043cc5010ac83.zip |
Don't use stale NDK libraries for IA
IA builds will break (due to the bionic _dso_handle bug) if stale libraries are
used. For now, just guard the defns against IA builds.
Change-Id: Ic9df6e0de78a0e221b95370ba6f01ce07714edde
Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
Diffstat (limited to 'native/Android.mk')
-rw-r--r-- | native/Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/Android.mk b/native/Android.mk index b2944699c..94e029877 100644 --- a/native/Android.mk +++ b/native/Android.mk @@ -8,8 +8,10 @@ LOCAL_SRC_FILES := \ src/dictionary.cpp \ src/char_utils.cpp +ifneq ($(TARGET_ARCH),x86) LOCAL_NDK_VERSION := 4 LOCAL_SDK_VERSION := 8 +endif LOCAL_MODULE := libjni_latinime |