1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.4'

* PHP-8.4:
  Fix clang compiler detection on Windows
This commit is contained in:
Christoph M. Becker
2025-01-14 12:36:58 +01:00

View File

@@ -3137,7 +3137,7 @@ function toolset_get_compiler_name(short)
var command = 'cmd /c ""' + PHP_CL + '" -v"';
var full = execute(command + '" 2>&1"');
ERROR(full.split(/\n/)[0].replace(/\s/g, ' '));
return full.split(/\n/)[0].replace(/\s/g, ' ');
}
WARNING("Unsupported toolset");