[PATCH] D68572: gn build: use better triple on windows

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 7 22:11:58 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL373899: gn build: use better triple on windows (authored by nico, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D68572?vs=223539&id=223734#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D68572/new/

https://reviews.llvm.org/D68572

Files:
  llvm/trunk/utils/gn/secondary/llvm/triples.gni


Index: llvm/trunk/utils/gn/secondary/llvm/triples.gni
===================================================================
--- llvm/trunk/utils/gn/secondary/llvm/triples.gni
+++ llvm/trunk/utils/gn/secondary/llvm/triples.gni
@@ -10,7 +10,7 @@
   } else if (current_os == "mac") {
     llvm_current_triple = "x86_64-apple-darwin"
   } else if (current_os == "win") {
-    llvm_current_triple = "x86_64-pc-windows"
+    llvm_current_triple = "x86_64-pc-windows-msvc"
   }
 } else if (current_cpu == "arm64") {
   if (current_os == "android") {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68572.223734.patch
Type: text/x-patch
Size: 541 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191008/5c6e82ce/attachment.bin>


More information about the llvm-commits mailing list