Mucci,
TIP: adding this parameter to the make.exe commandline in your script will speed up the build by many times.
-j8Also, I removed depend by default in makefile.mingw. Deprecated, because one can rebuild from clean quicker than
make will make & check the depend files. This also speeds the build up considerably.
Also.. fixed a string problem with newer compilers
edit:NOTE: ideally, you'd want to query the number of cores the processor has and pass this to make with -j. Maybe this will work? I didn't try it:
make -j%NUMBER_OF_PROCESSORS%
This way, if a cpu has more than 8 cores, it won't be limited to only using 8 cores if you only use -j8
best regards,
- dink