am 083b5ccb: Add liblog
* commit '083b5ccba345ed2b4950454f16bd89c5d86b6b27': Add liblog
This commit is contained in:
commit
129b6d907b
|
@ -28,7 +28,7 @@ LOCAL_STATIC_LIBRARIES := libminui libpixelflinger_static libpng
|
|||
ifeq ($(strip $(BOARD_CHARGER_ENABLE_SUSPEND)),true)
|
||||
LOCAL_STATIC_LIBRARIES += libsuspend
|
||||
endif
|
||||
LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils libm libc
|
||||
LOCAL_STATIC_LIBRARIES += libz libstdc++ libcutils liblog libm libc
|
||||
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ endif # ARCH_ARM_HAVE_VFP_D32
|
|||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
liblog \
|
||||
libc \
|
||||
libcorkscrew \
|
||||
libselinux
|
||||
|
@ -39,7 +40,7 @@ LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|||
LOCAL_MODULE_TAGS := optional
|
||||
LOCAL_CFLAGS += -fstack-protector-all
|
||||
#LOCAL_FORCE_STATIC_EXECUTABLE := true
|
||||
LOCAL_SHARED_LIBRARIES := libcutils libc
|
||||
LOCAL_SHARED_LIBRARIES := libcutils liblog libc
|
||||
include $(BUILD_EXECUTABLE)
|
||||
|
||||
ifeq ($(ARCH_ARM_HAVE_VFP),true)
|
||||
|
@ -54,7 +55,7 @@ LOCAL_SRC_FILES := vfp-crasher.c vfp.S
|
|||
LOCAL_MODULE := vfp-crasher
|
||||
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
LOCAL_SHARED_LIBRARIES := libcutils libc
|
||||
LOCAL_SHARED_LIBRARIES := libcutils liblog libc
|
||||
include $(BUILD_EXECUTABLE)
|
||||
endif # ARCH_ARM_HAVE_VFP == true
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ LOCAL_SRC_FILES += \
|
|||
LOCAL_CFLAGS += -DCORKSCREW_HAVE_ARCH
|
||||
endif
|
||||
|
||||
LOCAL_SHARED_LIBRARIES += libdl libcutils libgccdemangle
|
||||
LOCAL_SHARED_LIBRARIES += libdl libcutils liblog libgccdemangle
|
||||
|
||||
LOCAL_CFLAGS += -std=gnu99 -Werror
|
||||
LOCAL_MODULE := libcorkscrew
|
||||
|
@ -74,7 +74,7 @@ include $(CLEAR_VARS)
|
|||
LOCAL_SRC_FILES += $(generic_src_files) $(x86_src_files)
|
||||
LOCAL_CFLAGS += -DCORKSCREW_HAVE_ARCH
|
||||
LOCAL_SHARED_LIBRARIES += libgccdemangle
|
||||
LOCAL_STATIC_LIBRARIES += libcutils
|
||||
LOCAL_STATIC_LIBRARIES += libcutils liblog
|
||||
LOCAL_LDLIBS += -ldl -lrt
|
||||
LOCAL_CFLAGS += -std=gnu99 -Werror
|
||||
LOCAL_MODULE := libcorkscrew
|
||||
|
|
|
@ -9,7 +9,8 @@ LOCAL_SRC_FILES:= \
|
|||
packet.c
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils
|
||||
libcutils \
|
||||
liblog
|
||||
|
||||
LOCAL_MODULE:= libnetutils
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ PIXELFLINGER_SRC_FILES += arch-mips/t32cb16blend.S
|
|||
PIXELFLINGER_CFLAGS += -fstrict-aliasing -fomit-frame-pointer
|
||||
endif
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libcutils
|
||||
LOCAL_SHARED_LIBRARIES := libcutils liblog
|
||||
|
||||
#
|
||||
# Shared library
|
||||
|
@ -75,7 +75,7 @@ include $(BUILD_SHARED_LIBRARY)
|
|||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE:= libpixelflinger_static
|
||||
LOCAL_SRC_FILES := $(PIXELFLINGER_SRC_FILES)
|
||||
LOCAL_CFLAGS := $(PIXELFLINGER_CFLAGS)
|
||||
LOCAL_CFLAGS := $(PIXELFLINGER_CFLAGS)
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
|
||||
|
|
|
@ -16,11 +16,11 @@ LOCAL_SRC_FILES:= \
|
|||
|
||||
LOCAL_MODULE:= libsysutils
|
||||
|
||||
LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
|
||||
LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
|
||||
|
||||
LOCAL_CFLAGS :=
|
||||
LOCAL_CFLAGS :=
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libcutils
|
||||
LOCAL_SHARED_LIBRARIES := libcutils liblog
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
|
|
|
@ -88,6 +88,7 @@ LOCAL_C_INCLUDES := bionic/libc/bionic
|
|||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
liblog \
|
||||
libc \
|
||||
libusbhost \
|
||||
libselinux
|
||||
|
|
Loading…
Reference in New Issue