1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

gn build: Set is_clang to true in stage2 toolchains.

Differential Revision: https://reviews.llvm.org/D57202

llvm-svn: 352146
This commit is contained in:
Peter Collingbourne 2019-01-25 01:18:55 +00:00
parent f3ebfd83c4
commit aff560ac75

View File

@ -175,6 +175,7 @@ stage2_unix_toolchain("stage2_unix") {
toolchain_args = {
current_os = host_os
current_cpu = host_cpu
is_clang = true
use_lld = host_os != "mac"
}
}
@ -184,6 +185,7 @@ if (android_ndk_path != "") {
toolchain_args = {
current_os = "android"
current_cpu = "arm64"
is_clang = true
use_lld = true
}
}