]> granicus.if.org Git - php/commitdiff
reveal more info on the configure options
authorAnatol Belski <ab@php.net>
Sat, 1 Mar 2014 12:11:35 +0000 (13:11 +0100)
committerAnatol Belski <ab@php.net>
Sat, 1 Mar 2014 12:11:35 +0000 (13:11 +0100)
win32/build/confutils.js

index e0df4f621b53958a62929a438b78a46d34f3dd3c..0633cc429a063b1d8363b0b419b754a56ac14d1c 100644 (file)
@@ -1548,6 +1548,18 @@ function write_summary()
        ar[1] = ['Thread Safety', PHP_ZTS == "yes" ? "Yes" : "No"];\r
        ar[2] = ['Compiler', VC_VERSIONS[VCVERS]];\r
        ar[3] = ['Architecture', X64 ? 'x64' : 'x86'];\r
+       if (PHP_PGO == "yes") {\r
+               ar[4] = ['Optimization', "PGO"];\r
+       } else if (PHP_PGI == "yes") {\r
+               ar[4] = ['Optimization', "PGI"];\r
+       } else {\r
+               ar[4] = ['Optimization', PHP_DEBUG == "yes" ? "disabled" : "standard"];\r
+       }\r
+       if (PHP_STATIC_ANALYZE == "yes") {\r
+               ar[5] = ['Static analyzer', 'Visual Studio'];\r
+       } else {\r
+               ar[5] = ['Static analyzer', 'disabled'];\r
+       }\r
 \r
        output_as_table(["",""], ar);\r
        STDOUT.WriteBlankLines(2);\r