aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryangbill <yangbill@google.com>2024-02-29 03:21:19 +0000
committeryangbill <yangbill@google.com>2024-02-29 03:21:19 +0000
commit405491b92853e1f1c76812ebb06fae98cf751be0 (patch)
treef896cf2d38e34519862eb1d06ba652f71f6a3672
parent0de0275703a88b0bef8b8dc8a5f248500f9f7d17 (diff)
downloadclang-405491b92853e1f1c76812ebb06fae98cf751be0.tar.gz
Remove obsolete Android.mk for clang
clang phony target is remove from aosp/796032 which makes this Android.mk is useless now. Bug: 327100096 Test: m nothing Change-Id: I093fec1b5890fc54f900ea113954b9ac4b01b644
-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