We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f779b9 + 7c60a09 commit 91d61a2Copy full SHA for 91d61a2
win32/build/confutils.js
@@ -1548,6 +1548,18 @@ function write_summary()
1548
ar[1] = ['Thread Safety', PHP_ZTS == "yes" ? "Yes" : "No"];
1549
ar[2] = ['Compiler', VC_VERSIONS[VCVERS]];
1550
ar[3] = ['Architecture', X64 ? 'x64' : 'x86'];
1551
+ if (PHP_PGO == "yes") {
1552
+ ar[4] = ['Optimization', "PGO"];
1553
+ } else if (PHP_PGI == "yes") {
1554
+ ar[4] = ['Optimization', "PGI"];
1555
+ } else {
1556
+ ar[4] = ['Optimization', PHP_DEBUG == "yes" ? "disabled" : "standard"];
1557
+ }
1558
+ if (PHP_STATIC_ANALYZE == "yes") {
1559
+ ar[5] = ['Static analyzer', 'Visual Studio'];
1560
1561
+ ar[5] = ['Static analyzer', 'disabled'];
1562
1563
1564
output_as_table(["",""], ar);
1565
STDOUT.WriteBlankLines(2);
0 commit comments