diff options
author | Anatol Belski <ab@php.net> | 2014-03-01 13:11:35 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-03-01 13:11:35 +0100 |
commit | 7c60a09cae4dc200c2d5d365bbaf1873f6432b3f (patch) | |
tree | 5d9dfd121fbe1613b198b5f5eeb5ed821545d800 /win32 | |
parent | af545ead97e1a0d6821bdab6dff41690159e510b (diff) | |
download | php-git-7c60a09cae4dc200c2d5d365bbaf1873f6432b3f.tar.gz |
reveal more info on the configure options
Diffstat (limited to 'win32')
-rw-r--r-- | win32/build/confutils.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js index e0df4f621b..0633cc429a 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1548,6 +1548,18 @@ function write_summary() ar[1] = ['Thread Safety', PHP_ZTS == "yes" ? "Yes" : "No"];
ar[2] = ['Compiler', VC_VERSIONS[VCVERS]];
ar[3] = ['Architecture', X64 ? 'x64' : 'x86'];
+ if (PHP_PGO == "yes") {
+ ar[4] = ['Optimization', "PGO"];
+ } else if (PHP_PGI == "yes") {
+ ar[4] = ['Optimization', "PGI"];
+ } else {
+ ar[4] = ['Optimization', PHP_DEBUG == "yes" ? "disabled" : "standard"];
+ }
+ if (PHP_STATIC_ANALYZE == "yes") {
+ ar[5] = ['Static analyzer', 'Visual Studio'];
+ } else {
+ ar[5] = ['Static analyzer', 'disabled'];
+ }
output_as_table(["",""], ar);
STDOUT.WriteBlankLines(2);
|