aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-03-04 08:44:11 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-03-04 08:44:11 +0000
commit7a67a37a6535b869c62d2d14089458d77f933c46 (patch)
treef896cf2d38e34519862eb1d06ba652f71f6a3672
parent0de0275703a88b0bef8b8dc8a5f248500f9f7d17 (diff)
parent405491b92853e1f1c76812ebb06fae98cf751be0 (diff)
downloadclang-7a67a37a6535b869c62d2d14089458d77f933c46.tar.gz
Merge "Remove obsolete Android.mk for clang" into main
-rw-r--r--Android.mk97
1 files changed, 0 insertions, 97 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index d26c7058ba..0000000000
--- a/Android.mk
+++ /dev/null
@@ -1,97 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-CLANG_ROOT_PATH := $(LOCAL_PATH)
-
-.PHONY: clang-toolchain-minimal clang-toolchain-full llvm-tools
-clang-toolchain-minimal: \
- clang
-
-clang-toolchain-full: \
- clang-toolchain-minimal \
- asan_test \
- clang-check \
- clang-format \
- clang-tidy \
- FileCheck \
- llvm-as \
- llvm-dis \
- llvm-link \
- llvm-symbolizer \
- LLVMgold \
- libprofile_rt
-
-llvm-tools: \
- bugpoint \
- BugpointPasses \
- count \
- llc \
- lli \
- lli-child-target \
- LLVMHello \
- llvm-ar \
- llvm-as \
- llvm-bcanalyzer \
- llvm-config \
- llvm-cov \
- llvm-c-test \
- llvm-cxxdump \
- llvm-diff \
- llvm-dis \
- llvm-dsymutil \
- llvm-dwarfdump \
- llvm-dwp \
- llvm-extract \
- llvm-link \
- llvm-lto \
- llvm-mc \
- llvm-mcmarkup \
- llvm-nm \
- llvm-objdump \
- llvm-pdbdump \
- llvm-profdata \
- llvm-readobj \
- llvm-rtdyld \
- llvm-size \
- llvm-split \
- llvm-symbolizer \
- not \
- obj2yaml \
- opt \
- sancov \
- sanstats \
- verify-uselistorder \
- yaml2obj \
- yaml-bench
-
-ifneq ($(HOST_OS),darwin)
-clang-toolchain-minimal: \
- libasan \
- libasan_32 \
- libasan_cxx \
- libasan_cxx_32 \
- libprofile_rt_32 \
- libtsan \
- libtsan_cxx \
- libubsan_standalone \
- libubsan_standalone_32 \
- libubsan_standalone_cxx \
- libubsan_standalone_cxx_32
-
-clang-toolchain-full: \
- host_cross_clang \
- host_cross_clang_64 \
-
-# Build libomp on Linux host. Build modules for the host and some specific
-# targets.
-clang-toolchain-full: libomp
-ifneq (,$(filter arm arm64 x86 x86_64,$(TARGET_ARCH)))
-clang-toolchain-full: libomp-$(TARGET_ARCH)
-endif # ifneq (,$(filter arm arm64 x86 x86_64,$(TARGET_ARCH)))
-
-endif # ifneq ($(HOST_OS),darwin)
-
-ifneq (,$(filter arm arm64 x86 mips mips64,$(TARGET_ARCH)))
-clang-toolchain-minimal: \
- $(ADDRESS_SANITIZER_RUNTIME_LIBRARY) \
- $(UBSAN_RUNTIME_LIBRARY)
-
-endif