Game Development Community

Alternate Win32 compiler?

by Mike Stoddart · in Torque Game Engine · 05/16/2002 (3:04 pm) · 7 replies

My hard disk just died today, so I'm being relegated from a 20Gb drive to an old 3.2Gb drive. Obviously disk space will be a precious commodity for me, so what other Win32 compilers are supported by the Torque engine? I know that Visual Studio is very well supported with the included project files, so are there project files for any other Win32 compilers?

Thanks

#1
05/16/2002 (4:04 pm)
heh,
It can be done with the makefiles with some custamization.
you could use borlands free command line compiler.
Im not gonna support this sorry, but if you have the ingenuity you could do it.

Good luck :)
#2
05/16/2002 (6:46 pm)
I installed VS6 Ent and stripped it down to 131 MB using the custom install option.

It tells you how much disk space it will need, just remove all the windows specific crap like COM/MFC and all the other useless crap.
#3
05/16/2002 (8:02 pm)
I once tried to get it working with ming, and I made a fair amount of progress, but sort of loss interest in it. Some things (like opengl23d3) will never compile with ming because of all the inline asm, however at least the engine/demo app can be made to work I think. You would use make and the standard torque makefiles to build it.
#4
05/16/2002 (8:02 pm)
Thanks Jarred maybe I'll try that.
#5
05/16/2002 (8:02 pm)
Yes, I believe that the makefiles will work for some GnuCC version, and there are project files (and makefile settings) to support Codewarrior.

d
#6
05/17/2002 (8:00 am)
Mike, also look at www.slickedit.com I use it to acutally do my editing of code, since I do Java as well as C++, Java during the day, C++ by night :)

This is the ultimate programmers editor!

It does everything VS6 does but better and does some things that VS6 doesn't do.

I do compiling and step debugging in VS6 just because it is already set up and working, I am lazy and will one day configure SE to do the compiles.

SlickEdit actually uses the VS workspace file natively and support debugging and compiling.

The entire install is like 20 MB and it is FAST!
#7
05/17/2002 (5:55 pm)
Hey, thanks for your replies everyone.