From: Anatol Belski Date: Sat, 1 Mar 2014 12:11:35 +0000 (+0100) Subject: reveal more info on the configure options X-Git-Tag: php-5.6.0beta1~3^2~159 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c60a09cae4dc200c2d5d365bbaf1873f6432b3f;p=php reveal more info on the configure options --- 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);