Add back missing shared libraries used in executables in link commands. These
executables have calls to some shared libraries without explicitly linking them. Currently it works as linker links these libraries via dependencies of other libraries. This is fragile and not the right thing to do.
This commit is contained in:
@@ -7,6 +7,7 @@ LOCAL_SRC_FILES:= \
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
libutils \
|
||||
libbinder \
|
||||
libandroid_runtime
|
||||
|
||||
LOCAL_MODULE:= app_process
|
||||
|
||||
@@ -17,6 +17,7 @@ LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
libutils \
|
||||
libbinder \
|
||||
libui \
|
||||
libskia \
|
||||
libEGL \
|
||||
|
||||
@@ -6,7 +6,7 @@ include $(CLEAR_VARS)
|
||||
LOCAL_SRC_FILES:= \
|
||||
sdutil.cpp \
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := libhardware_legacy libcutils libutils libc
|
||||
LOCAL_SHARED_LIBRARIES := libhardware_legacy libbinder libcutils libutils libc
|
||||
|
||||
LOCAL_MODULE:= sdutil
|
||||
LOCAL_MODULE_TAGS := debug
|
||||
|
||||
@@ -6,6 +6,7 @@ LOCAL_SRC_FILES:= \
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
libhardware \
|
||||
libEGL \
|
||||
libGLESv1_CM \
|
||||
libui
|
||||
|
||||
@@ -6,6 +6,7 @@ LOCAL_SRC_FILES:= \
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
libutils \
|
||||
libEGL \
|
||||
libGLESv1_CM \
|
||||
libui
|
||||
|
||||
@@ -6,6 +6,7 @@ LOCAL_SRC_FILES:= \
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
libutils \
|
||||
libEGL \
|
||||
libGLESv1_CM \
|
||||
libui
|
||||
|
||||
@@ -6,6 +6,7 @@ LOCAL_SRC_FILES:= \
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
libcutils \
|
||||
libutils \
|
||||
libEGL \
|
||||
libGLESv1_CM \
|
||||
libui
|
||||
|
||||
Reference in New Issue
Block a user