[PATCH] D107894: [CMake] Make the vendor part of default mingw triples consistent

Martin Storsjö via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 12 03:28:08 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG592adb0b24ac: [CMake] Make the vendor part of default mingw triples consistent (authored by mstorsjo).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D107894

Files:
  llvm/cmake/modules/GetHostTriple.cmake


Index: llvm/cmake/modules/GetHostTriple.cmake
===================================================================
--- llvm/cmake/modules/GetHostTriple.cmake
+++ llvm/cmake/modules/GetHostTriple.cmake
@@ -23,13 +23,13 @@
       if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
         set( value "aarch64-w64-windows-gnu" )
       else()
-        set( value "armv7-pc-windows-gnu" )
+        set( value "armv7-w64-windows-gnu" )
       endif()
     else()
       if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
         set( value "x86_64-w64-windows-gnu" )
       else()
-        set( value "i686-pc-windows-gnu" )
+        set( value "i686-w64-windows-gnu" )
       endif()
     endif()
   elseif( CMAKE_SYSTEM_NAME MATCHES "OS390" )


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107894.365952.patch
Type: text/x-patch
Size: 707 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210812/a4920be7/attachment.bin>


More information about the llvm-commits mailing list