mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 21:30:01 -05:00
Android: Move *_LLVM_TRIPLE to the centralized table
This allows us to skip `abi-*.cmake` in the next change. In the future we may move all this information to the NDK.
This commit is contained in:
@@ -1,6 +1,3 @@
|
||||
# <ndk>/build/core/toolchains/aarch64-linux-android-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "aarch64-none-linux-android")
|
||||
|
||||
# Suppress -Wl,-z,nocopyreloc flag on arm64-v8a
|
||||
set(_ANDROID_ABI_INIT_EXE_LDFLAGS_NO_nocopyreloc 1)
|
||||
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
# <ndk>/build/core/toolchains/arm-linux-androideabi-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "armv5te-none-linux-androideabi")
|
||||
|
||||
string(APPEND _ANDROID_ABI_INIT_CFLAGS
|
||||
" -march=armv5te"
|
||||
)
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
# <ndk>/build/core/toolchains/arm-linux-androideabi-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "armv6-none-linux-androideabi")
|
||||
|
||||
string(APPEND _ANDROID_ABI_INIT_CFLAGS
|
||||
" -march=armv6"
|
||||
)
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
# <ndk>/build/core/toolchains/arm-linux-androideabi-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "armv7-none-linux-androideabi")
|
||||
|
||||
string(APPEND _ANDROID_ABI_INIT_CFLAGS
|
||||
" -march=armv7-a"
|
||||
)
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
# <ndk>/build/core/toolchains/mipsel-linux-android-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "mipsel-none-linux-android")
|
||||
|
||||
include(Platform/Android/abi-common-Clang)
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
# <ndk>/build/core/toolchains/mips64el-linux-android-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "mips64el-none-linux-android")
|
||||
|
||||
include(Platform/Android/abi-common-Clang)
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
# <ndk>/build/core/toolchains/x86-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "i686-none-linux-android")
|
||||
|
||||
include(Platform/Android/abi-common-Clang)
|
||||
|
||||
@@ -1,4 +1 @@
|
||||
# <ndk>/build/core/toolchains/x86_64-clang/setup.mk
|
||||
set(_ANDROID_ABI_CLANG_TARGET "x86_64-none-linux-android")
|
||||
|
||||
include(Platform/Android/abi-common-Clang)
|
||||
|
||||
Reference in New Issue
Block a user