From 4f0e5c8dd95e813e054314d684812dc7ae37fb7d Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Tue, 31 Dec 2019 11:50:24 +0100 Subject: 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. --- win32/build/confutils.js | 1 - 1 file changed, 1 deletion(-) (limited to 'win32') 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) { -- cgit v1.2.1