We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49d75a commit 9d2fed1Copy full SHA for 9d2fed1
instruments/example/jni/Android.mk
@@ -15,11 +15,16 @@
15
LOCAL_PATH := $(call my-dir)
16
17
include $(CLEAR_VARS)
18
+LOCAL_MODULE := base
19
+LOCAL_SRC_FILES := ../../base/obj/local/armeabi/libbase.a
20
+LOCAL_EXPORT_C_INCLUDES := ../../base
21
+include $(PREBUILT_STATIC_LIBRARY)
22
23
+
24
+include $(CLEAR_VARS)
25
LOCAL_MODULE := libexample
26
LOCAL_SRC_FILES := ../epoll.c ../epoll_arm.c.arm
-LOCAL_LDLIBS := -L./libs -ldl -ldvm -lbase
-LOCAL_LDLIBS := -Wl,--start-group ../../base/obj/local/armeabi/libbase.a -Wl,--end-group
27
LOCAL_CFLAGS := -g
-
28
+LOCAL_SHARED_LIBRARIES := dl
29
+LOCAL_STATIC_LIBRARIES := base
30
include $(BUILD_SHARED_LIBRARY)
0 commit comments