- MFB: 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:51:37 +00:00
parent e7eafa589d
commit 7b0246fa38

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);