.bazelrc 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. # Ensure all builds have Carbon's workspace status attached. We have carefully
  5. # factored the stamping done by this to avoid excessive build performance impact
  6. # and so enable stamping with it by default. CI and systems especially dependent
  7. # on caching should explicitly use `--nostamp`.
  8. build --workspace_status_command=./scripts/workspace_status.py
  9. build --stamp
  10. # Provide aliases for configuring the release and pre-release version being
  11. # built. For documentation of these flags, see //bazel/version/BUILD.
  12. build --flag_alias=release=//bazel/version:release
  13. build --flag_alias=pre_release=//bazel/version:pre_release
  14. build --flag_alias=rc_number=//bazel/version:rc_number
  15. build --flag_alias=nightly_date=//bazel/version:nightly_date
  16. # Support running clang-tidy with:
  17. # bazel build --config=clang-tidy -k //...
  18. # See: https://github.com/erenon/bazel_clang_tidy
  19. build:clang-tidy --aspects @bazel_clang_tidy//clang_tidy:clang_tidy.bzl%clang_tidy_aspect
  20. build:clang-tidy --output_groups=report
  21. build:clang-tidy --@bazel_clang_tidy//:clang_tidy_config=//:clang_tidy_config
  22. build:clang-tidy --action_env=PATH --host_action_env=PATH
  23. # This warning seems to incorrectly fire in this build configuration, despite
  24. # not firing in our normal builds.
  25. build:clang-tidy --copt=-Wno-unknown-pragmas
  26. # Provide an alias for controlling the `carbon_*` Bazel rules' configuration. We
  27. # enable use of the target config here to make our build and tests more
  28. # efficient, see the documentation in //bazel/carbon_rules/BUILD for details.
  29. build --flag_alias=use_target_config_carbon_rules=//bazel/carbon_rules:use_target_config_carbon_rules
  30. build --use_target_config_carbon_rules
  31. # Default to using a disk cache to minimize re-building LLVM and Clang which we
  32. # try to avoid updating too frequently to minimize rebuild cost. The location
  33. # here can be overridden in the user configuration where needed.
  34. #
  35. # Note that this cache will grow without bound currently. You should
  36. # periodically run the `scripts/clean_disk_cache.sh` script or some equivalent.
  37. # https://github.com/bazelbuild/bazel/issues/5139 tracks fixing this in Bazel.
  38. build --disk_cache=~/.cache/carbon-lang-build-cache
  39. # Enable some safety when using the build cache, likely to be defaulted in
  40. # future Bazel releases.
  41. build --experimental_guard_against_concurrent_changes
  42. # Used by clang_configuration.bzl.
  43. build --action_env=CC --host_action_env=CC
  44. build --action_env=CMAKE_SYSROOT --host_action_env=CMAKE_SYSROOT
  45. # Disable warnings for all external compilations. These involve code that isn't
  46. # developed as part of Carbon and may be difficult or impossible to patch, so
  47. # warnings aren't likely to be actionable.
  48. build --per_file_copt=external/.*\.(c|cc|cpp|cxx)$@-w
  49. build --host_per_file_copt=external/.*\.(c|cc|cpp|cxx)$@-w
  50. # The `rules_treesitter` synthesized libraries don't allow us to inject flags,
  51. # and compile generated code where we can't fix warnings.
  52. build --per_file_copt=utils/treesitter/_treesitter.tree_sitter/.*\.c$@-w
  53. build --host_per_file_copt=utils/treesitter/_treesitter.tree_sitter/.*\.c$@-w
  54. # Default dynamic linking to off. While this can help build performance in some
  55. # edge cases with very large linked executables and a slow linker, between using
  56. # fast linkers on all platforms (LLD and the Apple linker), as well as having
  57. # relatively few such executables, shared objects simply waste too much space in
  58. # our builds.
  59. build --dynamic_mode=off
  60. # Always compile PIC code. There are few if any disadvantages on the platforms
  61. # and architectures we care about and it avoids the need to compile files twice.
  62. build --force_pic
  63. # Completely disable Bazel's automatic stripping of debug information. Removing
  64. # that information causes unhelpful backtraces from unittest failures and other
  65. # crashes. Optimized builds already avoid using debug information by default.
  66. build --strip=never
  67. # Enable Abseil for GoogleTest.
  68. build --define=absl=1
  69. # Enable TCMalloc on Linux in optimized builds.
  70. build --custom_malloc=//bazel/malloc:tcmalloc_if_linux_opt
  71. # Configuration for enabling Address Sanitizer. Note that this is enabled by
  72. # default for fastbuild. The config is provided to enable ASan even in
  73. # optimized or other build configurations. Note that ASan and TCMalloc are
  74. # incompatible so this explicitly forces the system malloc.
  75. build:asan --features=asan
  76. build:asan --custom_malloc=@bazel_tools//tools/cpp:malloc
  77. # Configuration for enabling LibFuzzer (along with ASan).
  78. build:fuzzer --features=fuzzer
  79. # Always allow tests to symbolize themselves with whatever `llvm-symbolize` is
  80. # in the users environment.
  81. build --test_env=ASAN_SYMBOLIZER_PATH
  82. # Force actions to have a UTF-8 language encoding.
  83. # TODO: Need to investigate what this should be on Windows, but at least for
  84. # Linux and macOS this seems strictly better than the Bazel default of just
  85. # `en_US`.
  86. build --action_env=LANG=en_US.UTF-8
  87. # Allow per-platform configuration.
  88. build --enable_platform_specific_config
  89. # Enable libpfm for google_benchmark on Linux only.
  90. build:linux --define=pfm=1
  91. # Enable split debug info on Linux, which is significantly more space efficient
  92. # and should work well with modern debuggers. Note that this is Linux specific
  93. # as macOS has its own approach that is always partially but not completely
  94. # split.
  95. #
  96. # Note: if using GDB, see documentation to get that working:
  97. # https://docs.carbon-lang.dev/docs/project/contribution_tools.html#debugging-with-gdb-instead-of-lldb
  98. #
  99. # TODO: Bazel has a bug where it doesn't manage dwo files in the cache correctly.
  100. # build:linux --fission=yes
  101. # Disables `actions.declare_symlink`. Done for cross-environment support.
  102. build --allow_unresolved_symlinks=false
  103. # Allow users to override any of the flags desired by importing a user-specific
  104. # RC file here if present.
  105. try-import %workspace%/user.bazelrc
  106. # TODO: WORKSPACE will be removed in bazel 9, should finish moving off.
  107. common --enable_workspace
  108. # The version of treesitter rules we're using depends on empty globs.
  109. # TODO: Look at the different rules in the registry.
  110. common --incompatible_disallow_empty_glob=false
  111. # TODO: Enable as many incompatible flags as we can, per
  112. # https://bazel.build/release/backward-compatibility. To get the latest list,
  113. # using `bazelisk --migrate build //...` will help.
  114. common --incompatible_strict_action_env
  115. # This excludes things like rules_android to reduce warnings.
  116. # TODO: Disable this completely.
  117. common --incompatible_autoload_externally=+@rules_java,+@rules_python,+@rules_shell