From b25ec33c15fa2f33cd2e04a2b8694e05e3d76696 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Wed, 20 Apr 2022 06:55:22 -0700 Subject: [PATCH] bazel: disable wasm on macOS for now (#20889) On M1 macs this fails with a linker error that I'm attempting to fix here https://chromium-review.googlesource.com/c/v8/v8/+/3589296 We could also take that as a patch but it would probably be nice to get input upstream on the fix first. Signed-off-by: Keith Smiley --- .bazelrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.bazelrc b/.bazelrc index 71683b82ba62..8c179e346958 100644 --- a/.bazelrc +++ b/.bazelrc @@ -96,6 +96,7 @@ build:macos --cxxopt=-std=c++17 build:macos --action_env=PATH=/usr/bin:/bin:/opt/homebrew/bin:/usr/local/bin:/opt/local/bin build:macos --host_action_env=PATH=/usr/bin:/bin:/opt/homebrew/bin:/usr/local/bin:/opt/local/bin build:macos --define tcmalloc=disabled +build:macos --define wasm=disabled # macOS ASAN/UBSAN build:macos-asan --config=asan