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.
1 parent 3c13864 commit 58628e0Copy full SHA for 58628e0
NEWS
@@ -59,6 +59,9 @@ PHP NEWS
59
. Fixed bug GH-15833 (Segmentation fault (access null pointer) in
60
ext/spl/spl_array.c). (nielsdos)
61
62
+- Windows:
63
+ . Fixed clang compiler detection. (cmb)
64
+
65
- Zip:
66
. Fixed bug GH-17139 (Fix zip_entry_name() crash on invalid entry).
67
(nielsdos)
win32/build/confutils.js
@@ -3125,7 +3125,7 @@ function toolset_get_compiler_name(short)
3125
var command = 'cmd /c ""' + PHP_CL + '" -v"';
3126
var full = execute(command + '" 2>&1"');
3127
3128
- ERROR(full.split(/\n/)[0].replace(/\s/g, ' '));
+ return full.split(/\n/)[0].replace(/\s/g, ' ');
3129
}
3130
3131
WARNING("Unsupported toolset");
0 commit comments