02-04-2012, 01:45 AM
Are you precompiling the right header? VS works by precompiling one specific header and then including that header as the first one in every cpp file (that's why I added the Globals.h header). I think with gcc you want to do the same thing - precompile the Globals.h header and then proceed with normal compilation.
I'm having a friend help me with makefiles now, so you might want to postpone this a bit until we have a better makefile (that is, if he can help us Right now a worse problem with *nix is that a change in the header doesn't force "make" to recompile all cpps that are affected; also i'd like to have three builds - debug, release and profiling. He said he might manage all this, but it'll take some time.
I'm having a friend help me with makefiles now, so you might want to postpone this a bit until we have a better makefile (that is, if he can help us Right now a worse problem with *nix is that a change in the header doesn't force "make" to recompile all cpps that are affected; also i'd like to have three builds - debug, release and profiling. He said he might manage all this, but it'll take some time.