[PATCH] D57202: gn build: Set is_clang to true in stage2 toolchains.
Peter Collingbourne via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 24 17:19:22 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL352146: gn build: Set is_clang to true in stage2 toolchains. (authored by pcc, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D57202?vs=183427&id=183452#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57202/new/
https://reviews.llvm.org/D57202
Files:
llvm/trunk/utils/gn/build/toolchain/BUILD.gn
Index: llvm/trunk/utils/gn/build/toolchain/BUILD.gn
===================================================================
--- llvm/trunk/utils/gn/build/toolchain/BUILD.gn
+++ llvm/trunk/utils/gn/build/toolchain/BUILD.gn
@@ -175,6 +175,7 @@
toolchain_args = {
current_os = host_os
current_cpu = host_cpu
+ is_clang = true
use_lld = host_os != "mac"
}
}
@@ -184,6 +185,7 @@
toolchain_args = {
current_os = "android"
current_cpu = "arm64"
+ is_clang = true
use_lld = true
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57202.183452.patch
Type: text/x-patch
Size: 535 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190125/eec1174c/attachment.bin>
More information about the llvm-commits
mailing list