.bazelrc 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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. # Setup stamping with Carbon's workspace status attached but disable it by
  5. # default.
  6. #
  7. # Note that while we have minimized the impact of stamping on build caching, it
  8. # still has a meaningful impact, especially during development. So we disable
  9. # stamping by default and builds that need to include the workspace status
  10. # should explicitly enable it with `--stamp`.
  11. common --workspace_status_command=./scripts/workspace_status.py
  12. common --nostamp
  13. # Provide aliases for configuring the release and pre-release version being
  14. # built. For documentation of these flags, see //bazel/version/BUILD.
  15. common --flag_alias=release=//bazel/version:release
  16. common --flag_alias=pre_release=//bazel/version:pre_release
  17. common --flag_alias=rc_number=//bazel/version:rc_number
  18. common --flag_alias=nightly_date=//bazel/version:nightly_date
  19. # Support running clang-tidy with:
  20. # bazel build --config=clang-tidy -k //...
  21. # See: https://github.com/erenon/bazel_clang_tidy
  22. common:clang-tidy --aspects @bazel_clang_tidy//clang_tidy:clang_tidy.bzl%clang_tidy_aspect
  23. common:clang-tidy --output_groups=report
  24. common:clang-tidy --@bazel_clang_tidy//:clang_tidy_config=//:clang_tidy_config
  25. common:clang-tidy --action_env=PATH --host_action_env=PATH
  26. # This warning seems to incorrectly fire in this build configuration, despite
  27. # not firing in our normal builds.
  28. common:clang-tidy --copt=-Wno-unknown-pragmas
  29. # --config=non-fatal-checks makes CHECK failures not terminate compilation.
  30. common:non-fatal-checks --per_file_copt=common/check_internal.cpp@-DCARBON_NON_FATAL_CHECKS
  31. # Provide an alias for controlling the `carbon_*` Bazel rules' configuration. We
  32. # enable use of the target config here to make our build and tests more
  33. # efficient, see the documentation in //bazel/carbon_rules/BUILD for details.
  34. common --flag_alias=use_target_config_carbon_rules=//bazel/carbon_rules:use_target_config_carbon_rules
  35. # Bazel doesn't track what commands the flag_alias is valid for, so we can't use
  36. # common here.
  37. build --use_target_config_carbon_rules
  38. # Default to using a disk cache to minimize re-building LLVM and Clang which we
  39. # try to avoid updating too frequently to minimize rebuild cost. The location
  40. # here can be overridden in the user configuration where needed.
  41. common --disk_cache=~/.cache/carbon-lang-build-cache
  42. # If you'd like a different disk cache size, override it by copying this
  43. # line to `user.bazelrc` in the repository root and modify the number there.
  44. common --experimental_disk_cache_gc_max_size=100G
  45. # Enable some safety when using the build cache. Defaults to `lite`.
  46. common --guard_against_concurrent_changes=full
  47. # Used by clang_configuration.bzl.
  48. common --action_env=CC --host_action_env=CC
  49. common --action_env=CMAKE_SYSROOT --host_action_env=CMAKE_SYSROOT
  50. # Disable warnings for all external compilations. These involve code that isn't
  51. # developed as part of Carbon and may be difficult or impossible to patch, so
  52. # warnings aren't likely to be actionable.
  53. common --per_file_copt=external/.*\.(c|cc|cpp|cxx)$@-w
  54. common --host_per_file_copt=external/.*\.(c|cc|cpp|cxx)$@-w
  55. # Default dynamic linking to off. While this can help build performance in some
  56. # edge cases with very large linked executables and a slow linker, between using
  57. # fast linkers on all platforms (LLD and the Apple linker), as well as having
  58. # relatively few such executables, shared objects simply waste too much space in
  59. # our builds.
  60. common --dynamic_mode=off
  61. # Always compile PIC code. There are few if any disadvantages on the platforms
  62. # and architectures we care about and it avoids the need to compile files twice.
  63. common --force_pic
  64. # Completely disable Bazel's automatic stripping of debug information. Removing
  65. # that information causes unhelpful backtraces from unittest failures and other
  66. # crashes. Optimized builds already avoid using debug information by default.
  67. common --strip=never
  68. # Enable Abseil for GoogleTest.
  69. common --define=absl=1
  70. # Enable TCMalloc on Linux in optimized builds.
  71. common --custom_malloc=//bazel/malloc:tcmalloc_if_linux_opt
  72. # Configuration for enabling Address Sanitizer. Note that ASan and TCMalloc are
  73. # incompatible so this explicitly forces the system malloc.
  74. common:asan --features=asan
  75. common:asan --custom_malloc=@bazel_tools//tools/cpp:malloc
  76. # Also double the test timeouts for ASan to improve their consistency.
  77. test:asan --test_timeout=120,600,1800,-1
  78. # Configuration for enabling LibFuzzer (along with ASan).
  79. common:fuzzer --features=fuzzer
  80. # Force actions to have a UTF-8 language encoding.
  81. # TODO: Need to investigate what this should be on Windows, but at least for
  82. # Linux and macOS this seems strictly better than the Bazel default of just
  83. # `en_US`.
  84. common --action_env=LANG=en_US.UTF-8
  85. # Allow per-platform configuration.
  86. common --enable_platform_specific_config
  87. # Enable libpfm for google_benchmark on Linux only.
  88. common:linux --define=pfm=1
  89. # Enable split debug info on Linux, which is significantly more space efficient
  90. # and should work well with modern debuggers. Note that this is Linux specific
  91. # as macOS has its own approach that is always partially but not completely
  92. # split.
  93. #
  94. # Note: if using GDB, see documentation to get that working:
  95. # https://docs.carbon-lang.dev/docs/project/contribution_tools.html#debugging-with-gdb-instead-of-lldb
  96. #
  97. # TODO: Bazel has a bug where it doesn't manage dwo files in the cache correctly.
  98. # common:linux --fission=yes
  99. # Disables `actions.declare_symlink`. Done for cross-environment support.
  100. common --allow_unresolved_symlinks=false
  101. # Allow users to override any of the flags desired by importing a user-specific
  102. # RC file here if present.
  103. try-import %workspace%/user.bazelrc
  104. # Query error in `@bazel_tools`. This reproduces with
  105. # `bazel query 'deps(//...)'`.
  106. # TODO: Enable the flag once compatibility issues are fixed.
  107. # common --incompatible_disable_non_executable_java_binary
  108. # Incompatible with the clang-tidy build mode.
  109. # TODO: Enable the flag once compatibility issues are fixed.
  110. # common --incompatible_auto_exec_groups
  111. # Incompatible with `rules_cc`.
  112. # TODO: Enable the flag once compatibility issues are fixed.
  113. # common --incompatible_no_rule_outputs_param
  114. # common --incompatible_stop_exporting_language_modules
  115. # Incompatible with `rules_pkg`.
  116. # TODO: Enable the flag once compatibility issues are fixed.
  117. # common --incompatible_disable_target_default_provider_fields
  118. # Incompatible with `rules_shell`.
  119. # TODO: Enable the flag once compatibility issues are fixed.
  120. # common --incompatible_check_visibility_for_toolchains
  121. # Enable as many incompatible flags as we can, per
  122. # https://bazel.build/release/backward-compatibility. To get the latest list,
  123. # using `bazelisk --migrate build //...` will help.
  124. common --incompatible_allow_tags_propagation
  125. common --incompatible_always_check_depset_elements
  126. common --incompatible_always_include_files_in_data
  127. common --incompatible_bazel_test_exec_run_under
  128. common --incompatible_check_sharding_support
  129. common --incompatible_check_testonly_for_output_files
  130. common --incompatible_config_setting_private_default_visibility
  131. common --incompatible_default_to_explicit_init_py
  132. common --incompatible_depset_for_java_output_source_jars
  133. common --incompatible_depset_for_libraries_to_link_getter
  134. common --incompatible_disable_autoloads_in_main_repo
  135. common --incompatible_disable_native_android_rules
  136. common --incompatible_disable_native_repo_rules
  137. common --incompatible_disable_objc_library_transition
  138. common --incompatible_disable_starlark_host_transitions
  139. common --incompatible_disable_target_provider_fields
  140. common --incompatible_disallow_ctx_resolve_tools
  141. common --incompatible_disallow_empty_glob
  142. common --incompatible_disallow_legacy_py_provider
  143. common --incompatible_disallow_sdk_frameworks_attributes
  144. common --incompatible_disallow_struct_provider_syntax
  145. common --incompatible_do_not_split_linking_cmdline
  146. common --incompatible_dont_enable_host_nonhost_crosstool_features
  147. common --incompatible_dont_use_javasourceinfoprovider
  148. common --incompatible_enable_apple_toolchain_resolution
  149. common --incompatible_enable_deprecated_label_apis
  150. common --incompatible_enable_proto_toolchain_resolution
  151. common --incompatible_enforce_config_setting_visibility
  152. common --incompatible_enforce_starlark_utf8
  153. common --incompatible_exclusive_test_sandboxed
  154. common --incompatible_fail_on_unknown_attributes
  155. common --incompatible_fix_package_group_reporoot_syntax
  156. common --incompatible_java_common_parameters
  157. common --incompatible_legacy_local_fallback
  158. common --incompatible_locations_prefers_executable
  159. common --incompatible_make_thinlto_command_lines_standalone
  160. common --incompatible_merge_fixed_and_default_shell_env
  161. common --incompatible_merge_genfiles_directory
  162. common --incompatible_modify_execution_info_additive
  163. common --incompatible_new_actions_api
  164. common --incompatible_no_attr_license
  165. common --incompatible_no_implicit_file_export
  166. common --incompatible_no_implicit_watch_label
  167. common --incompatible_objc_alwayslink_by_default
  168. common --incompatible_package_group_has_public_syntax
  169. common --incompatible_py2_outputs_are_suffixed
  170. common --incompatible_py3_is_default
  171. common --incompatible_python_disable_py2
  172. common --incompatible_python_disallow_native_rules
  173. common --incompatible_remote_use_new_exit_code_for_lost_inputs
  174. common --incompatible_remove_legacy_whole_archive
  175. common --incompatible_require_ctx_in_configure_features
  176. common --incompatible_require_linker_input_cc_api
  177. common --incompatible_run_shell_command_string
  178. common --incompatible_sandbox_hermetic_tmp
  179. common --incompatible_simplify_unconditional_selects_in_rule_attrs
  180. common --incompatible_stop_exporting_build_file_path
  181. common --incompatible_strict_action_env
  182. common --incompatible_strip_executable_safely
  183. common --incompatible_top_level_aspects_require_providers
  184. common --incompatible_unambiguous_label_stringification
  185. common --incompatible_use_cc_configure_from_rules_cc
  186. common --incompatible_use_new_cgroup_implementation
  187. common --incompatible_use_plus_in_repo_names
  188. common --incompatible_use_python_toolchains
  189. common --incompatible_validate_top_level_header_inclusions
  190. common --incompatible_visibility_private_attributes_at_definition