Reputation: 31
Which compilers other than Visual Studio 2010 and 2008 support DirectX SDK Jun 2010?
I am a beginner, and I want to program with DirectX 11, but i have a VERY limited internet and may download only little files (300 MB).
It would be interesting to know all compilers that can be used to program for DirectX 11.
Upvotes: 2
Views: 2535
Reputation: 1528
Here is a short list of compilers that actually include the headers and/or libraries of DirectX 10/11 of the box:
Actually, any reasonably modern Windows compiler should be able to compile/support the DirectX 10/11 headers. I have seen GCC 3.4.2 struggle a lot though, but that version is ancient. Headers are the easy part, so to speak: simply dump the headers in the appropriate include folder and your compiler suddenly supports DirectX 10/11.
The other part, libaries, are the harder part. Obtaining both x64 and x64 libs and converting to GCC's .a (using lib2a) can be annoying. Fortunately, compilers like TDM-GCC or IDEs like Dev-C++ started shipping with the libs a while ago. And again, pretty much any recent compiler will suddenly support DirectX 10/11 if you dump the .a files of the libraries in the proper folder.
Upvotes: 2