Add back missing libdl in linker command. The executables here contain call

to function defined in libdl.so but the library is missing the linker commands.
Currently, the library is linked via dependency of another library.  While this
works, it is not the right thing to do.
This commit is contained in:
Doug Kwan 2009-10-02 12:02:02 -07:00
parent fcf7a09bab
commit ab9ad14429
1 changed files with 4 additions and 2 deletions

View File

@ -25,7 +25,8 @@ LOCAL_SRC_FILES:= \
disassem.cpp
LOCAL_SHARED_LIBRARIES := \
libacc
libacc \
libdl
LOCAL_CFLAGS := -O0 -g
@ -57,7 +58,8 @@ LOCAL_SRC_FILES:= \
runtimeTest.cpp
LOCAL_SHARED_LIBRARIES := \
libacc
libacc \
libdl
LOCAL_CFLAGS := -O0 -g