From: Christoph M. Becker Date: Sat, 6 Apr 2019 15:38:18 +0000 (+0200) Subject: Fix ASAN configuration X-Git-Tag: php-7.4.0alpha1~593 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3393ae6e77c485c3ac69a11287432eee3088cd76;p=php Fix ASAN configuration Commit 6a624c1[1] mostly replaced `COMPILER_NAME` with `COMPILER_NAME_LONG` and `COMPILER_NAME_SHORT`, but not all occurrences, what broke the Clang ASAN configuration. We fix this by getting rid of `COMPILER_NAME` altogether. [1] --- diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 7a33ce6cfe..f43572c9dd 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -2940,7 +2940,7 @@ function toolset_setup_compiler() if ("unknown" == COMPILER_NAME_LONG) { var tmp = probe_binary(PHP_CL); - COMPILER_NAME = "MSVC " + tmp + ", untested"; + COMPILER_NAME_LONG = COMPILER_NAME_SHORT = "MSVC " + tmp + ", untested"; WARNING("Using unknown MSVC version " + tmp); @@ -3652,7 +3652,7 @@ function get_clang_lib_dir() var ret = null; var ver = null; - if (COMPILER_NAME.match(/clang version ([\d\.]+) \((.*)\)/)) { + if (COMPILER_NAME_LONG.match(/clang version ([\d\.]+) \((.*)\)/)) { ver = RegExp.$1; } else { ERROR("Faled to determine clang lib path"); @@ -3685,7 +3685,7 @@ function add_asan_opts(cflags_name, libs_name, ldflags_name) var ver = null; - if (COMPILER_NAME.match(/clang version ([\d\.]+) \((.*)\)/)) { + if (COMPILER_NAME_LONG.match(/clang version ([\d\.]+) \((.*)\)/)) { ver = RegExp.$1; } else { ERROR("Faled to determine clang lib path");