Reputation: 106530
I'm writing a compiler which uses C as an intermediate code which is (Currently) passed out to MinGW for compilation into an EXE file.
I'm looking for an x64 compiler that I can include in my releases, so that users of my application can get around Win64's "Windows on Windows" system to access native resources. MinGW allows me to distribute the compiler, but it doesn't seem to support generation of 64 bit binaries.
Thanks in advance :)
Billy3
Upvotes: 1
Views: 844
Reputation: 239011
Looks like this might be what you're after:
The mingw-w64 project is a complete runtime environment for gcc to support binaries native to Windows 64-bit and 32-bit operating systems.
Upvotes: 8
Reputation: 258128
You can use the Tiny C Compiler, which is available under the LGPL, and which supports x86-64. It's also approaching "full ISOC99 compliance."
Upvotes: 2