We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pc
unknown
stdlib/CMakeLists.txt
1 parent 426c4f9 commit 670e8a8Copy full SHA for 670e8a8
stdlib/public/CMakeLists.txt
@@ -194,8 +194,10 @@ if(SWIFT_SHOULD_BUILD_EMBEDDED_STDLIB)
194
list(APPEND EMBEDDED_STDLIB_TARGET_TRIPLES
195
"i686 i686-unknown-none-elf i686-unknown-none-elf"
196
"x86_64 x86_64-unknown-none-elf x86_64-unknown-none-elf"
197
- "i686 i686-pc-windows-coff i686-pc-windows-coff"
198
- "x86_64 x86_64-pc-windows-coff x86_64-pc-windows-coff"
+ # Without specifying the `windows` component LLVM refuses to
+ # generate valid COFF object files.
199
+ "i686 i686-unknown-windows-coff i686-unknown-windows-coff"
200
+ "x86_64 x86_64-unknown-windows-coff x86_64-unknown-windows-coff"
201
)
202
endif()
203
0 commit comments