aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2012-09-06 11:35:34 -0700
committerYing Wang <wangying@google.com>2012-12-14 18:19:15 -0800
commitdb9ab02c090cdc5d2b31399867a4052351b8793d (patch)
tree85b6e02ce75ee97239780c92191854633722a81a /Android.mk
parenta6d94785fc7c80c33de99b5a65e6a5e3a2e93fb3 (diff)
downloadexternal_protobuf-db9ab02c090cdc5d2b31399867a4052351b8793d.zip
external_protobuf-db9ab02c090cdc5d2b31399867a4052351b8793d.tar.gz
external_protobuf-db9ab02c090cdc5d2b31399867a4052351b8793d.tar.bz2
Build against the NDK for x86 and mips too.
Change-Id: I68963dc1c274c3dcf1038d4e21dc418f9554b78f
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk14
1 files changed, 8 insertions, 6 deletions
diff --git a/Android.mk b/Android.mk
index 5ec5a70..889764d 100644
--- a/Android.mk
+++ b/Android.mk
@@ -196,13 +196,14 @@ LOCAL_C_INCLUDES := \
LOCAL_CFLAGS := -DGOOGLE_PROTOBUF_NO_RTTI
-ifeq ($(TARGET_ARCH),arm)
# These are the minimum versions and don't need to be update.
+ifeq ($(TARGET_ARCH),arm)
LOCAL_SDK_VERSION := 8
-LOCAL_NDK_STL_VARIANT := stlport_static
else
-include external/stlport/libstlport.mk
+# x86/mips support only available from API 9.
+LOCAL_SDK_VERSION := 9
endif
+LOCAL_NDK_STL_VARIANT := stlport_static
include $(BUILD_STATIC_LIBRARY)
@@ -260,13 +261,14 @@ LOCAL_C_INCLUDES := \
LOCAL_CFLAGS := -DGOOGLE_PROTOBUF_NO_RTTI
-ifeq ($(TARGET_ARCH),arm)
# These are the minimum versions and don't need to be update.
+ifeq ($(TARGET_ARCH),arm)
LOCAL_SDK_VERSION := 8
-LOCAL_NDK_STL_VARIANT := stlport_static
else
-include external/stlport/libstlport.mk
+# x86/mips support only available from API 9.
+LOCAL_SDK_VERSION := 9
endif
+LOCAL_NDK_STL_VARIANT := stlport_static
include $(BUILD_STATIC_LIBRARY)