From 7c60a09cae4dc200c2d5d365bbaf1873f6432b3f Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 1 Mar 2014 13:11:35 +0100 Subject: [PATCH] reveal more info on the configure options --- win32/build/confutils.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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); -- 2.50.1