diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2012-03-01 23:58:50 -0800 |
---|---|---|
committer | Andrew Hsieh <andrewhsieh@google.com> | 2012-03-01 23:58:50 -0800 |
commit | 99e7f7af84b324034af348cbb7a180848cca2ebb (patch) | |
tree | 0fec173faea0a872462d011460cfc0a32d83744f | |
parent | 977fc4e9153b29e2f5e0b05d20d3c09b81b95e42 (diff) | |
download | system_core-99e7f7af84b324034af348cbb7a180848cca2ebb.zip system_core-99e7f7af84b324034af348cbb7a180848cca2ebb.tar.gz system_core-99e7f7af84b324034af348cbb7a180848cca2ebb.tar.bz2 |
Added rules to build 64-bit libraries: lib64cutils.a and lib64log.a
Both libraries are needed to build four shared libraries in 64-bit
for 64-bit emulator with "-gpu on"
lib64OpenglRender.so
lib64EGL_translator.so
lib64GLES_CM_translator.so
lib64GLES_V2_translator.so
Change-Id: If57f72d4661a74f1d5e537568881f39132e0b43d
-rw-r--r-- | libcutils/Android.mk | 11 | ||||
-rw-r--r-- | liblog/Android.mk | 12 |
2 files changed, 23 insertions, 0 deletions
diff --git a/libcutils/Android.mk b/libcutils/Android.mk index dcf859b..3809733 100644 --- a/libcutils/Android.mk +++ b/libcutils/Android.mk @@ -94,6 +94,17 @@ LOCAL_CFLAGS += $(hostSmpFlag) include $(BUILD_HOST_STATIC_LIBRARY) +# Static library for host, 64-bit +# ======================================================== +include $(CLEAR_VARS) +LOCAL_MODULE := lib64cutils +LOCAL_SRC_FILES := $(commonSources) $(commonHostSources) dlmalloc_stubs.c +LOCAL_LDLIBS := -lpthread +LOCAL_STATIC_LIBRARIES := lib64log +LOCAL_CFLAGS += $(hostSmpFlag) -m64 +include $(BUILD_HOST_STATIC_LIBRARY) + + # Shared and static library for target # ======================================================== diff --git a/liblog/Android.mk b/liblog/Android.mk index bd4fed4..bd2590e 100644 --- a/liblog/Android.mk +++ b/liblog/Android.mk @@ -40,6 +40,7 @@ endif liblog_host_sources := $(liblog_sources) fake_log_device.c + # Static library for host # ======================================================== LOCAL_MODULE := liblog @@ -48,6 +49,17 @@ LOCAL_LDLIBS := -lpthread LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1 include $(BUILD_HOST_STATIC_LIBRARY) + +# Static library for host, 64-bit +# ======================================================== +include $(CLEAR_VARS) +LOCAL_MODULE := lib64log +LOCAL_SRC_FILES := $(liblog_host_sources) +LOCAL_LDLIBS := -lpthread +LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1 -m64 +include $(BUILD_HOST_STATIC_LIBRARY) + + # Shared and static library for target # ======================================================== include $(CLEAR_VARS) |