This makes e.g. ToolChain::isCrossCompiling() in
clang/lib/Driver/ToolChain.cpp return the correct result
if the compiler was cross-compiled. This change also affects
llvm_default_target_triple, so cross-compiled compilers default to
targeting the cross-compilation target, which makes more sense than
the host that the compiler was compiled on.
This change will also be necessary in order for the correct triples
to appear in generated lit files for non-native targets.
Differential Revision: https://reviews.llvm.org/D56696
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351168
91177308-0d34-0410-b5e6-
96231b3b80d8
current_os = target_os
}
+if (target_cpu == "") {
+ target_cpu = host_cpu
+}
+if (current_cpu == "") {
+ current_cpu = target_cpu
+}
+
if (host_os == "win") {
host_toolchain = "//llvm/utils/gn/build/toolchain:win"
} else {
toolchain_args = {
current_os = host_os
+ current_cpu = host_cpu
}
}
toolchain_args = {
current_os = "android"
+ current_cpu = "arm64"
}
libcxx_path = "$android_ndk_path/sources/cxx-stl/llvm-libc++"
toolchain_args = {
current_os = "win"
+ current_cpu = host_cpu
}
}
# builds exist, to make sure it's a toolchain var.
"CMAKE_CXX_COMPILER=c++",
"ENABLE_BACKTRACES=1",
- "LLVM_HOST_TRIPLE=$llvm_host_triple",
+ "LLVM_HOST_TRIPLE=$llvm_current_triple",
"LLVM_LIT_TOOLS_DIR=", # Intentionally empty, matches cmake build.
"LLVM_USE_SANITIZER=",
"PYTHON_EXECUTABLE=$python_path",
"LINK_POLLY_INTO_TOOLS=",
"LLVM_DEFAULT_TARGET_TRIPLE=$llvm_target_triple",
"LLVM_HAS_ATOMICS=1",
- "LLVM_HOST_TRIPLE=$llvm_host_triple",
+ "LLVM_HOST_TRIPLE=$llvm_current_triple",
"LLVM_NATIVE_ARCH=$native_target",
"LLVM_NATIVE_ASMPARSER=1",
"LLVM_NATIVE_ASMPRINTER=1",
"LLVM_ENABLE_FFI=0",
"LLVM_HAVE_OPT_VIEWER_MODULES=0",
- "LLVM_HOST_TRIPLE=$llvm_host_triple",
+ "LLVM_HOST_TRIPLE=$llvm_current_triple",
"LLVM_LIBRARY_DIR=" + rebase_path("$root_out_dir/lib"),
"LLVM_LINK_LLVM_DYLIB=0",
"LLVM_LIT_TOOLS_DIR=", # Intentionally empty, matches cmake build.
-if (host_cpu == "x64") {
- if (host_os == "linux") {
- llvm_host_triple = "x86_64-unknown-linux-gnu"
- } else if (host_os == "mac") {
- llvm_host_triple = "x86_64-apple-darwin"
- } else if (host_os == "win") {
- llvm_host_triple = "x86_64-pc-windows"
+if (current_cpu == "x64") {
+ if (current_os == "linux") {
+ llvm_current_triple = "x86_64-unknown-linux-gnu"
+ } else if (current_os == "mac") {
+ llvm_current_triple = "x86_64-apple-darwin"
+ } else if (current_os == "win") {
+ llvm_current_triple = "x86_64-pc-windows"
}
-} else {
- assert(false, "unimplemented host_cpu " + host_cpu)
+} else if (current_cpu == "arm64") {
+ if (current_os == "android") {
+ llvm_current_triple = "aarch64-linux-android21"
+ }
+}
+
+if (!defined(llvm_current_triple)) {
+ assert(false, "unimplemented cpu/os " + current_cpu + "/" + current_os)
}
declare_args() {
# The default target triple.
- llvm_target_triple = llvm_host_triple
+ llvm_target_triple = llvm_current_triple
}