aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSajid Dalvi <sdalvi@google.com>2018-07-23 10:33:40 -0500
committerSajid Dalvi <sdalvi@google.com>2018-07-24 10:29:50 -0500
commit4959932899064afd107737bb54cbf146f2a5a518 (patch)
treea7af41113fab5e4a7d58eb64b326cee64dc0b068
parent866374163a1164e1113a4d2e9e0453d68a06dfa3 (diff)
downloadbionic-4959932899064afd107737bb54cbf146f2a5a518.tar.gz
remove bionic-compile-time-tests-g++
make checkbuild gives the following error: bionic/tests/fortify_filecheck_diagnostics_test.cpp:1:0: error: unknown value 'cortex-a55' for -mcpu The error is because we have a clang to support the new architecture, but not a corresponding GCC. It is not trivial to filter out an invalid CPU, and since there is no platform code built with GCC any more, its better to remove bionic-compile-time-tests-g++ Bug: 74404306 Change-Id: I6aa181c652abeef782fec6380dfadd066140b8b9
-rw-r--r--tests/Android.mk19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/Android.mk b/tests/Android.mk
index c945bab70..fc7b94011 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -68,25 +68,6 @@ LOCAL_ADDITIONAL_DEPENDENCIES := \
$(LOCAL_PATH)/file-check-cxx \
| $(HOST_OUT_EXECUTABLES)/FileCheck$(HOST_EXECUTABLE_SUFFIX) \
-LOCAL_CXX = $(LOCAL_PATH)/file-check-cxx \
- $(HOST_OUT_EXECUTABLES)/FileCheck \
- $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_CXX) \
- GCC \
-
-LOCAL_CLANG := false
-LOCAL_MODULE := bionic-compile-time-tests-g++
-LOCAL_CPPFLAGS := -Wall -Werror
-# Disable color diagnostics so the warnings output matches the source
-LOCAL_CPPFLAGS += -fdiagnostics-color=never
-LOCAL_SRC_FILES := fortify_filecheck_diagnostics_test.cpp
-include $(BUILD_STATIC_LIBRARY)
-
-include $(CLEAR_VARS)
-LOCAL_ADDITIONAL_DEPENDENCIES := \
- $(LOCAL_PATH)/Android.mk \
- $(LOCAL_PATH)/file-check-cxx \
- | $(HOST_OUT_EXECUTABLES)/FileCheck$(HOST_EXECUTABLE_SUFFIX) \
-
LOCAL_CXX := $(LOCAL_PATH)/file-check-cxx \
$(HOST_OUT_EXECUTABLES)/FileCheck \
$(LLVM_PREBUILTS_PATH)/clang++ \