Browse Source

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

experimental/first_unicode_implementation
Pierre Joye 18 years ago
parent
commit
7b0246fa38
  1. 4
      win32/build/config.w32

4
win32/build/config.w32

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

Loading…
Cancel
Save