Skip to content

Commit

Permalink
wasm: fix V8 running under ASan without setup_clang. (envoyproxy#9036)
Browse files Browse the repository at this point in the history
* wasm: fix V8 running under ASan without setup_clang.

Signed-off-by: Piotr Sikora <[email protected]>
  • Loading branch information
PiotrSikora authored and lizan committed Nov 15, 2019
1 parent d5f3efd commit bde534b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazel/external/wee8.genrule_cmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export NM=$${NM:-nm}
if [[ $${ENVOY_ASAN-} == "1" ]]; then
WEE8_BUILD_ARGS+=" is_asan=true"
WEE8_BUILD_ARGS+=" is_lsan=true"
WEE8_BUILD_ARGS+=" is_ubsan=true"
fi
if [[ $${ENVOY_UBSAN_VPTR-} == "1" ]]; then
WEE8_BUILD_ARGS+=" is_ubsan=true"
WEE8_BUILD_ARGS+=" is_ubsan_vptr=true"
fi
if [[ $${ENVOY_MSAN-} == "1" ]]; then
Expand Down

0 comments on commit bde534b

Please sign in to comment.