summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-12-31 11:50:24 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2019-12-31 12:00:10 +0100
commit4f0e5c8dd95e813e054314d684812dc7ae37fb7d (patch)
tree2acc20ea5eb09b6417cd86035ced65145fe279e4 /win32
parent22e9f9fe4d23e67cde27ab01afcd75e2bad55bd1 (diff)
downloadphp-git-4f0e5c8dd95e813e054314d684812dc7ae37fb7d.tar.gz
Remove superfluous compiler option
`-fsanitize-address-use-after-scope` is the default as of clang 5.0.0, and we don't allow to enable ASan for older versions anyway.
Diffstat (limited to 'win32')
-rw-r--r--win32/build/confutils.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/win32/build/confutils.js b/win32/build/confutils.js
index 83d5907a4f..c95ea1f3e6 100644
--- a/win32/build/confutils.js
+++ b/win32/build/confutils.js
@@ -3702,7 +3702,6 @@ function add_asan_opts(cflags_name, libs_name, ldflags_name)
if (!!cflags_name) {
ADD_FLAG(cflags_name, "-fsanitize=address");
- ADD_FLAG(cflags_name, "-fsanitize-address-use-after-scope");
}
if (!!libs_name) {
if (X64) {