From 7f39d100d8cd207094decea907121df72065517e Mon Sep 17 00:00:00 2001 From: walkingeyerobot Date: Wed, 13 Oct 2021 11:07:14 -0400 Subject: [PATCH] bazel: pass -g instead of -g4 for wasm_asan feature (#904) --- bazel/emscripten_toolchain/crosstool.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/emscripten_toolchain/crosstool.bzl b/bazel/emscripten_toolchain/crosstool.bzl index 708b479..6e7be86 100644 --- a/bazel/emscripten_toolchain/crosstool.bzl +++ b/bazel/emscripten_toolchain/crosstool.bzl @@ -619,7 +619,7 @@ def _impl(ctx): actions = all_compile_actions + all_link_actions, flags = [ - "-g4", + "-g", "-fsanitize=address", "-O1", "-DADDRESS_SANITIZER=1",