Skip to content

Commit 91d61a2

Browse files
committed
Merge branch 'PHP-5.6'
* PHP-5.6: reveal more info on the configure options
2 parents 3f779b9 + 7c60a09 commit 91d61a2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

win32/build/confutils.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,6 +1548,18 @@ function write_summary()
15481548
ar[1] = ['Thread Safety', PHP_ZTS == "yes" ? "Yes" : "No"];
15491549
ar[2] = ['Compiler', VC_VERSIONS[VCVERS]];
15501550
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+
} else {
1561+
ar[5] = ['Static analyzer', 'disabled'];
1562+
}
15511563

15521564
output_as_table(["",""], ar);
15531565
STDOUT.WriteBlankLines(2);

0 commit comments

Comments
 (0)