diff options
| author | Andy McFadden <fadden@android.com> | 2009-05-13 12:52:53 -0700 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2009-05-13 12:52:53 -0700 |
| commit | ef94ff4ddf40c832032b39f835615352c93a9b4e (patch) | |
| tree | 02a1e1e2dc988556151f733a4d069f3a32d952c6 | |
| parent | 2ac16b7e46753238312475cf16aa910c1897c5d0 (diff) | |
| parent | 6fc287b6f6df62c73e1057e26475fec2837296cc (diff) | |
| download | system_core-ef94ff4ddf40c832032b39f835615352c93a9b4e.zip system_core-ef94ff4ddf40c832032b39f835615352c93a9b4e.tar.gz system_core-ef94ff4ddf40c832032b39f835615352c93a9b4e.tar.bz2 | |
am 6fc287b: Fix sim build (need explicit -lpthread).
Merge commit '6fc287b6f6df62c73e1057e26475fec2837296cc'
* commit '6fc287b6f6df62c73e1057e26475fec2837296cc':
Fix sim build (need explicit -lpthread).
| -rw-r--r-- | libsysutils/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libsysutils/Android.mk b/libsysutils/Android.mk index cbb1edf..59461da 100644 --- a/libsysutils/Android.mk +++ b/libsysutils/Android.mk @@ -18,4 +18,8 @@ LOCAL_CFLAGS := LOCAL_SHARED_LIBRARIES := libcutils +ifeq ($(TARGET_SIMULATOR),true) + LOCAL_LDLIBS += -lpthread +endif + include $(BUILD_SHARED_LIBRARY) |
