Billy ONeal
Billy ONeal

Reputation: 106530

Free Compiler for Windows on x86_64

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

Answers (3)

caf
caf

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

Mark Rushakoff
Mark Rushakoff

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

Dmitriy
Dmitriy

Reputation: 3415

VisualStudio Express

Upvotes: 3

Related Questions