1ifeq (,$(filter %mips64,$(TARGET_ARCH_ABI))) 2 3include $(NDK_ROOT)/sources/cxx-stl/gabi++/tests/Android.mk 4 5else 6 7# mips64 fails to compile. 8# /s/mydroid/ndk/sources/cxx-stl/gabi++/tests/catch_const_pointer_nullptr.cpp: In function 'void test5()': 9# /s/mydroid/ndk/sources/cxx-stl/gabi++/tests/catch_const_pointer_nullptr.cpp:81:6: error: dominator of 3 should be 6, not 4 10# void test5() 11# ^ 12# /s/mydroid/ndk/sources/cxx-stl/gabi++/tests/catch_const_pointer_nullptr.cpp:81:6: internal compiler error: in verify_dominators, at dominance.c:1047 13# Please submit a full bug report, 14# with preprocessed source if appropriate. 15# See <http://source.android.com/source/report-bugs.html> for instructions. 16# make: *** [obj/local/mips64/objs/test_gabixx_shared_catch_const_pointer_nullptr/catch_const_pointer_nullptr.o] Error 1 17 18LOCAL_PATH := $(call my-dir) 19include $(CLEAR_VARS) 20LOCAL_MODULE := dummy 21LOCAL_SRC_FILES := dummy.c 22include $(BUILD_EXECUTABLE) 23 24endif