diff options
author | 2011-10-19 22:35:56 -0700 | |
---|---|---|
committer | 2011-10-20 16:21:25 -0700 | |
commit | 64ef6b47e020da5370af8897638a0a778fa52b74 (patch) | |
tree | 740353ef25502e55bae3bca6aaa81733f2fb3df9 /tools/obbtool | |
parent | 63aa6622d0eb6592a582ac28078404bfc411bcef (diff) |
add -ldl to host executables
This fixes the build on Linux when RefBase is compiled with reference tracking
enabled.
Change-Id: I3e931e0b463ce836f6fdb30c37068d77144631a3
Signed-off-by: Iliyan Malchev <malchev@google.com>
Diffstat (limited to 'tools/obbtool')
-rw-r--r-- | tools/obbtool/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/obbtool/Android.mk b/tools/obbtool/Android.mk index d118bd7eb120..72a9858ecaf8 100644 --- a/tools/obbtool/Android.mk +++ b/tools/obbtool/Android.mk @@ -22,7 +22,7 @@ LOCAL_STATIC_LIBRARIES := \ libcutils ifeq ($(HOST_OS),linux) -LOCAL_LDLIBS += -lpthread +LOCAL_LDLIBS += -ldl -lpthread endif LOCAL_MODULE := obbtool |