More build system changes

This commit is contained in:
Andrew D'Addesio 2012-10-18 23:03:05 -05:00
parent 3ab4f0caed
commit aa50ab78ec
3 changed files with 142 additions and 12 deletions

View file

@ -25,10 +25,10 @@ Scene * CurrentScene;
#ifdef _WIN32
/* TDM GCC bonus feature; saves 66 kB in the binary :) */
/* */ void* operator new(unsigned size){return malloc(size);}
/* */ void operator delete(void *ptr){free(ptr);}
/* */ extern "C" void __cxa_pure_virtual(){}
/* MinGW bonus feature; saves 66 kB in the binary :) */
/* */ void* __CRTDECL operator new(unsigned size){return malloc(size);}
/* */ void __CRTDECL operator delete(void *ptr){free(ptr);}
/* */ extern "C" void __CRTDECL __cxa_pure_virtual(){}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int)
{