From bb9305bdf3e9f55e4868375b6806abaa8664dab9 Mon Sep 17 00:00:00 2001 From: hai007 Date: Tue, 23 Apr 2024 11:49:17 -0700 Subject: [PATCH] Fix OSS bazel build on MacOS see bazelbuild/bazel#10472 for more info on why this is needed. Without it, the build will try to use system headers which conflict with project defined headers in this build for boringssl PiperOrigin-RevId: 627458516 --- .bazelrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index 0785f8ff..cf26506a 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,3 +1,4 @@ build --action_env=BAZEL_CXXOPTS=-std=c++17 # Definition of --config=memcheck -build:memcheck --strip=never --test_timeout=3600 \ No newline at end of file +build:memcheck --strip=never --test_timeout=3600 +build --sandbox_block_path=/usr/local