diff options
author | Elliott Hughes <enh@google.com> | 2014-01-28 22:02:15 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-01-28 22:02:15 -0800 |
commit | 7cd3fbc6e2bb66702345440362881b86d57f09a1 (patch) | |
tree | efc9b501f3eb5fa5268d2925068011e2a01fee3f /emulator | |
parent | 8434938ed08d4431f8d8dce3f62ceba797fad665 (diff) | |
download | sdk-7cd3fbc6e2bb66702345440362881b86d57f09a1.zip sdk-7cd3fbc6e2bb66702345440362881b86d57f09a1.tar.gz sdk-7cd3fbc6e2bb66702345440362881b86d57f09a1.tar.bz2 |
gtest needs -lpthread.
Change-Id: I020a56c0a762c4df9c0c7cabc17c862e05699c18
Diffstat (limited to 'emulator')
-rw-r--r-- | emulator/opengl/shared/emugl/common/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emulator/opengl/shared/emugl/common/Android.mk b/emulator/opengl/shared/emugl/common/Android.mk index 0af670c..d0b9d4e 100644 --- a/emulator/opengl/shared/emugl/common/Android.mk +++ b/emulator/opengl/shared/emugl/common/Android.mk @@ -28,6 +28,7 @@ host_commonSources := \ $(call emugl-begin-host-executable,emugl_common_host_unittests) LOCAL_SRC_FILES := $(host_commonSources) LOCAL_C_INCLUDES += external/gtest/include +LOCAL_LDFLAGS += -lpthread $(call emugl-export,STATIC_LIBRARIES, libemugl_common libgtest_host libgtest_main_host) $(call emugl-end-module) |