I am trying to find Clang binaries to download for the Windows x86-64 target and have not been successful.
Do any such binaries exist?
Thank you,
Simon Koeman
I am trying to find Clang binaries to download for the Windows x86-64 target and have not been successful.
Do any such binaries exist?
Thank you,
Simon Koeman
I believe we only have 32-bit binaries, but they can produce 64-bit code if that’s what you’re looking for. You simply pass the -m64 flag.
If you want a 64-bit binary for better performance or whatnot, you’ll have to build from source for now.
Simon Koeman <simonk@microsoft.com> writes:
I am trying to find Clang binaries to download for the Windows x86-64
target and have not been successful.Do any such binaries exist?
MSYS2 provides binary packages for Windows 64 bits using the Mingw-w64
runtime and g++ ABI.
Hi,
If you want to link, you also need to put 64bit link.exe on PATH, as well as the right LIBs.
Ah, that works. Thanks!