aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-03-04 22:19:06 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-03-04 22:19:06 +0000
commit46099125fd98d7a2a3e1c0b2d82f17938e1320bb (patch)
treef896cf2d38e34519862eb1d06ba652f71f6a3672
parent156fa912f34d3cad47dfde740c039ec4a5c534af (diff)
parent4c066f1943cd5b92bf6190939f4b1dd60be643c6 (diff)
downloadclang-simpleperf-release.tar.gz
Merge "Snap for 11526323 from 7a67a37a6535b869c62d2d14089458d77f933c46 to simpleperf-release" into simpleperf-releasesimpleperf-release
-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