| import %workspace%/../../tools/preset.bazelrc |
| |
| ### YOUR PROJECT SPECIFIC OPTIONS GO HERE ### |
| |
| # There are some empty globs in the LLVM toolchain |
| common --noincompatible_disallow_empty_glob |
| |
| # Don't try and auto detect the cc toolchain, as we use our llvm. |
| build --action_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 |
| build --incompatible_enable_cc_toolchain_resolution |
| |
| # Load any settings & overrides specific to the current user from `.aspect/bazelrc/user.bazelrc`. |
| # This file should appear in `.gitignore` so that settings are not shared with team members. This |
| # should be last statement in this config so the user configuration is able to overwrite flags from |
| # this file. See https://bazel.build/configure/best-practices#bazelrc-file. |
| try-import %workspace%/../../.aspect/bazelrc/user.bazelrc |