diff options
author | Iliyan Malchev <malchev@google.com> | 2011-10-19 22:35:56 -0700 |
---|---|---|
committer | Iliyan Malchev <malchev@google.com> | 2011-10-20 16:21:25 -0700 |
commit | 64ef6b47e020da5370af8897638a0a778fa52b74 (patch) | |
tree | 740353ef25502e55bae3bca6aaa81733f2fb3df9 /tools/localize | |
parent | 63aa6622d0eb6592a582ac28078404bfc411bcef (diff) | |
download | frameworks_base-64ef6b47e020da5370af8897638a0a778fa52b74.zip frameworks_base-64ef6b47e020da5370af8897638a0a778fa52b74.tar.gz frameworks_base-64ef6b47e020da5370af8897638a0a778fa52b74.tar.bz2 |
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/localize')
-rw-r--r-- | tools/localize/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/localize/Android.mk b/tools/localize/Android.mk index f284e86..5ec9feb 100644 --- a/tools/localize/Android.mk +++ b/tools/localize/Android.mk @@ -34,7 +34,7 @@ LOCAL_STATIC_LIBRARIES := \ libcutils ifeq ($(HOST_OS),linux) -LOCAL_LDLIBS += -lrt -lpthread +LOCAL_LDLIBS += -lrt -ldl -lpthread endif |