Game Development Community

Compile tools with mingw?

by SeanT · in Torque Game Engine · 11/26/2003 (8:49 am) · 4 replies

Could someone post a quick "how-to" compile the tools using mingw and gcc3? Thanks!

#1
11/26/2003 (9:20 am)
make -f mk/configure.mk OS=WIN32 COMPILER=GCC3 BUILD=DEBUG

make clean

make


or change BUILD=DEBUG to BUILD=RELEASE if you want a release build... hope this helps.
#2
01/13/2004 (5:40 pm)
I can build the engine successfully, how to build the tools with mingw?
#3
01/13/2004 (7:47 pm)
Easy:

Quote:
make -f mk/configure.mk OS=WIN32 BUILD=RELEASE COMPILER=GCC3

make all

That should do it
#4
01/14/2004 (6:06 am)
Thanks very much for that!