3a0a8918b2
libgtest_main uses symbols from libgtest. If libgtest_main is linked after libgtest, and the test .o files don't reference libgtest (which is unlikely), then the libgtest .o files will be ignored and libgtest_main won't be able to find its symbols from libgtest. Change-Id: Ica3bc679bd9d14e9a3065be927f085cf52faab64
14 lines
501 B
Makefile
14 lines
501 B
Makefile
#####################################################
|
|
## Shared definitions for all host test compilations.
|
|
#####################################################
|
|
|
|
LOCAL_CFLAGS_windows += -DGTEST_OS_WINDOWS
|
|
LOCAL_CFLAGS_linux += -DGTEST_OS_LINUX
|
|
LOCAL_LDLIBS_linux += -lpthread
|
|
LOCAL_CFLAGS_darwin += -DGTEST_OS_LINUX
|
|
LOCAL_LDLIBS_darwin += -lpthread
|
|
|
|
LOCAL_CFLAGS += -DGTEST_HAS_STD_STRING -O0 -g
|
|
LOCAL_C_INCLUDES += external/gtest/include
|
|
|
|
LOCAL_STATIC_LIBRARIES += libgtest_main_host libgtest_host
|