Add liblog

Bug: 8580410
Change-Id: Iab3a9b4307f207c14a04a922cc7350c54e60e9ad
This commit is contained in:
Ying Wang 2013-04-09 22:03:45 -07:00
parent 7716aef138
commit 083b5ccba3
7 changed files with 14 additions and 11 deletions

View file

@ -28,7 +28,7 @@ LOCAL_STATIC_LIBRARIES := libminui libpixelflinger_static libpng
ifeq ($(strip $(BOARD_CHARGER_ENABLE_SUSPEND)),true) ifeq ($(strip $(BOARD_CHARGER_ENABLE_SUSPEND)),true)
LOCAL_STATIC_LIBRARIES += libsuspend LOCAL_STATIC_LIBRARIES += libsuspend
endif endif
LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils libm libc LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils liblog libm libc
include $(BUILD_EXECUTABLE) include $(BUILD_EXECUTABLE)

View file

@ -25,6 +25,7 @@ endif # ARCH_ARM_HAVE_VFP_D32
LOCAL_SHARED_LIBRARIES := \ LOCAL_SHARED_LIBRARIES := \
libcutils \ libcutils \
liblog \
libc \ libc \
libcorkscrew \ libcorkscrew \
libselinux libselinux
@ -39,7 +40,7 @@ LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := optional LOCAL_MODULE_TAGS := optional
LOCAL_CFLAGS += -fstack-protector-all LOCAL_CFLAGS += -fstack-protector-all
#LOCAL_FORCE_STATIC_EXECUTABLE := true #LOCAL_FORCE_STATIC_EXECUTABLE := true
LOCAL_SHARED_LIBRARIES := libcutils libc LOCAL_SHARED_LIBRARIES := libcutils liblog libc
include $(BUILD_EXECUTABLE) include $(BUILD_EXECUTABLE)
ifeq ($(ARCH_ARM_HAVE_VFP),true) ifeq ($(ARCH_ARM_HAVE_VFP),true)
@ -54,7 +55,7 @@ LOCAL_SRC_FILES := vfp-crasher.c vfp.S
LOCAL_MODULE := vfp-crasher LOCAL_MODULE := vfp-crasher
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := optional LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libcutils libc LOCAL_SHARED_LIBRARIES := libcutils liblog libc
include $(BUILD_EXECUTABLE) include $(BUILD_EXECUTABLE)
endif # ARCH_ARM_HAVE_VFP == true endif # ARCH_ARM_HAVE_VFP == true

View file

@ -49,7 +49,7 @@ LOCAL_SRC_FILES += \
LOCAL_CFLAGS += -DCORKSCREW_HAVE_ARCH LOCAL_CFLAGS += -DCORKSCREW_HAVE_ARCH
endif endif
LOCAL_SHARED_LIBRARIES += libdl libcutils libgccdemangle LOCAL_SHARED_LIBRARIES += libdl libcutils liblog libgccdemangle
LOCAL_CFLAGS += -std=gnu99 -Werror LOCAL_CFLAGS += -std=gnu99 -Werror
LOCAL_MODULE := libcorkscrew LOCAL_MODULE := libcorkscrew
@ -74,7 +74,7 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES += $(generic_src_files) $(x86_src_files) LOCAL_SRC_FILES += $(generic_src_files) $(x86_src_files)
LOCAL_CFLAGS += -DCORKSCREW_HAVE_ARCH LOCAL_CFLAGS += -DCORKSCREW_HAVE_ARCH
LOCAL_SHARED_LIBRARIES += libgccdemangle LOCAL_SHARED_LIBRARIES += libgccdemangle
LOCAL_STATIC_LIBRARIES += libcutils LOCAL_STATIC_LIBRARIES += libcutils liblog
LOCAL_LDLIBS += -ldl -lrt LOCAL_LDLIBS += -ldl -lrt
LOCAL_CFLAGS += -std=gnu99 -Werror LOCAL_CFLAGS += -std=gnu99 -Werror
LOCAL_MODULE := libcorkscrew LOCAL_MODULE := libcorkscrew

View file

@ -9,7 +9,8 @@ LOCAL_SRC_FILES:= \
packet.c packet.c
LOCAL_SHARED_LIBRARIES := \ LOCAL_SHARED_LIBRARIES := \
libcutils libcutils \
liblog
LOCAL_MODULE:= libnetutils LOCAL_MODULE:= libnetutils

View file

@ -50,7 +50,7 @@ PIXELFLINGER_SRC_FILES += arch-mips/t32cb16blend.S
PIXELFLINGER_CFLAGS += -fstrict-aliasing -fomit-frame-pointer PIXELFLINGER_CFLAGS += -fstrict-aliasing -fomit-frame-pointer
endif endif
LOCAL_SHARED_LIBRARIES := libcutils LOCAL_SHARED_LIBRARIES := libcutils liblog
# #
# Shared library # Shared library

View file

@ -20,7 +20,7 @@ LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
LOCAL_CFLAGS := LOCAL_CFLAGS :=
LOCAL_SHARED_LIBRARIES := libcutils LOCAL_SHARED_LIBRARIES := libcutils liblog
include $(BUILD_SHARED_LIBRARY) include $(BUILD_SHARED_LIBRARY)

View file

@ -88,6 +88,7 @@ LOCAL_C_INCLUDES := bionic/libc/bionic
LOCAL_SHARED_LIBRARIES := \ LOCAL_SHARED_LIBRARIES := \
libcutils \ libcutils \
liblog \
libc \ libc \
libusbhost \ libusbhost \
libselinux libselinux