Revert "Move some tests to libc++."

The build system is still linking both libgcc and libcompiler-rt,
which is causing duplicate symbol errors on some architectures. This
requires a fix in the build system, so reverting for now.

This reverts commit e3cccbfd47.
This commit is contained in:
Dan Albert 2014-11-11 21:41:14 -08:00
parent 5c7e2e6030
commit 1d3b492bde
2 changed files with 2 additions and 3 deletions

View file

@ -42,10 +42,8 @@ LOCAL_STATIC_LIBRARIES := \
libcutils \
liblog \
libutils \
libc++abi \
libdl \
LOCAL_CXX_STL := libc++_static
LOCAL_CXX_STL := stlport_static
LOCAL_MULTILIB := both
LOCAL_MODULE_STEM_32 := $(LOCAL_MODULE)32
LOCAL_MODULE_STEM_64 := $(LOCAL_MODULE)64

View file

@ -21,6 +21,7 @@ LOCAL_MODULE := ion-unit-tests
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
LOCAL_CFLAGS += -g -Wall -Werror -std=gnu++11 -Wno-missing-field-initializers
LOCAL_SHARED_LIBRARIES += libion
LOCAL_STATIC_LIBRARIES += libgtest_main
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../kernel-headers
LOCAL_SRC_FILES := \
ion_test_fixture.cpp \