- add multi threaded build support (automatic detection of the number of cpus, add a custom number if you prefer to use only a few of your available cores)

This commit is contained in:
Pierre Joye 2009-01-06 20:50:57 +00:00
parent 3c967db4a1
commit c83e0d50d0

View File

@ -145,6 +145,10 @@ if (VCVERS >= 1400) {
}
}
if (VCVERS >= 1500) {
ADD_FLAG('CFLAGS', ' /MP ');
}
// General link flags
DEFINE("LDFLAGS", "/nologo /version:" +
PHP_VERSION + "." + PHP_MINOR_VERSION + "." + PHP_RELEASE_VERSION);