From 715c000cf107a83583cf6292d61e121562296be9 Mon Sep 17 00:00:00 2001 From: mikey dagitses Date: Wed, 2 Mar 2022 12:27:41 -0800 Subject: [PATCH] setup system includes for generated files on MacOS (#73591) Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/73591 Test Plan: Imported from OSS Reviewed By: malfet Differential Revision: D34558342 Pulled By: dagitses fbshipit-source-id: 6914a9a95d73105356e7b9c1543deab8bbdeec57 (cherry picked from commit 8b2e338827e39fcb35c3031fa22b2b1575a2c399) --- .bazelrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.bazelrc b/.bazelrc index e315cdb8e278a..bbde3075f2af9 100644 --- a/.bazelrc +++ b/.bazelrc @@ -5,6 +5,7 @@ build --copt=-I. # (e.g. c10/macros/cmake_macros.h) by making the generated directory a # system include path. build --copt=-isystem --copt bazel-out/k8-fastbuild/bin +build --copt=-isystem --copt bazel-out/darwin-fastbuild/bin build --experimental_ui_max_stdouterr_bytes=2048576 # Configuration to disable tty features for environments like CI