am ef3eb5f7: Added rules to build 64-bit libraries: lib64cutils.a and lib64log.a

* commit 'ef3eb5f74022050666168922d96c79531401a16d':
  Added rules to build 64-bit libraries: lib64cutils.a and lib64log.a
This commit is contained in:
Andrew Hsieh 2012-03-22 10:18:56 -07:00 committed by Android Git Automerger
commit 4b91e3328c
2 changed files with 23 additions and 0 deletions

View File

@ -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
# ========================================================
include $(CLEAR_VARS)

View File

@ -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)