.bazelrc 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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. common --workspace_status_command=./scripts/workspace_status.py
  9. common --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. common --flag_alias=release=//bazel/version:release
  13. common --flag_alias=pre_release=//bazel/version:pre_release
  14. common --flag_alias=rc_number=//bazel/version:rc_number
  15. common --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. common:clang-tidy --aspects @bazel_clang_tidy//clang_tidy:clang_tidy.bzl%clang_tidy_aspect
  20. common:clang-tidy --output_groups=report
  21. common:clang-tidy --@bazel_clang_tidy//:clang_tidy_config=//:clang_tidy_config
  22. common: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. common:clang-tidy --copt=-Wno-unknown-pragmas
  26. # --config=non-fatal-checks makes CHECK failures not terminate compilation.
  27. common:non-fatal-checks --per_file_copt=common/check_internal.cpp@-DCARBON_NON_FATAL_CHECKS
  28. # Provide an alias for controlling the `carbon_*` Bazel rules' configuration. We
  29. # enable use of the target config here to make our build and tests more
  30. # efficient, see the documentation in //bazel/carbon_rules/BUILD for details.
  31. common --flag_alias=use_target_config_carbon_rules=//bazel/carbon_rules:use_target_config_carbon_rules
  32. common --flag_alias=use_target_config_runtimes_builder=//toolchain/driver:use_target_config_runtimes_builder
  33. # Bazel doesn't track what commands the flag_alias is valid for, so we can't use
  34. # common here.
  35. build --use_target_config_carbon_rules
  36. build --use_target_config_runtimes_builder
  37. # Default to using a disk cache to minimize re-building LLVM and Clang which we
  38. # try to avoid updating too frequently to minimize rebuild cost. The location
  39. # here can be overridden in the user configuration where needed.
  40. common --disk_cache=~/.cache/carbon-lang-build-cache
  41. # If you'd like a different disk cache size, override it by copying this
  42. # line to `user.bazelrc` in the repository root and modify the number there.
  43. common --experimental_disk_cache_gc_max_size=100G
  44. # Enable some safety when using the build cache. Defaults to `lite`.
  45. common --guard_against_concurrent_changes=full
  46. # Used by clang_configuration.bzl.
  47. common --action_env=CC --host_action_env=CC
  48. common --action_env=CMAKE_SYSROOT --host_action_env=CMAKE_SYSROOT
  49. # Disable warnings for all external compilations. These involve code that isn't
  50. # developed as part of Carbon and may be difficult or impossible to patch, so
  51. # warnings aren't likely to be actionable.
  52. common --per_file_copt=external/.*\.(c|cc|cpp|cxx)$@-w
  53. common --host_per_file_copt=external/.*\.(c|cc|cpp|cxx)$@-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. common --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. common --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. common --strip=never
  67. # Enable Abseil for GoogleTest.
  68. common --define=absl=1
  69. # Enable TCMalloc on Linux in optimized builds.
  70. common --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. common:asan --features=asan
  76. common:asan --custom_malloc=@bazel_tools//tools/cpp:malloc
  77. # Configuration for enabling LibFuzzer (along with ASan).
  78. common:fuzzer --features=fuzzer
  79. # Force actions to have a UTF-8 language encoding.
  80. # TODO: Need to investigate what this should be on Windows, but at least for
  81. # Linux and macOS this seems strictly better than the Bazel default of just
  82. # `en_US`.
  83. common --action_env=LANG=en_US.UTF-8
  84. # Allow per-platform configuration.
  85. common --enable_platform_specific_config
  86. # Enable libpfm for google_benchmark on Linux only.
  87. common:linux --define=pfm=1
  88. # Enable split debug info on Linux, which is significantly more space efficient
  89. # and should work well with modern debuggers. Note that this is Linux specific
  90. # as macOS has its own approach that is always partially but not completely
  91. # split.
  92. #
  93. # Note: if using GDB, see documentation to get that working:
  94. # https://docs.carbon-lang.dev/docs/project/contribution_tools.html#debugging-with-gdb-instead-of-lldb
  95. #
  96. # TODO: Bazel has a bug where it doesn't manage dwo files in the cache correctly.
  97. # common:linux --fission=yes
  98. # Disables `actions.declare_symlink`. Done for cross-environment support.
  99. common --allow_unresolved_symlinks=false
  100. # Allow users to override any of the flags desired by importing a user-specific
  101. # RC file here if present.
  102. try-import %workspace%/user.bazelrc
  103. # Query error in `@bazel_tools`. This reproduces with
  104. # `bazel query 'deps(//...)'`.
  105. # TODO: Enable the flag once compatibility issues are fixed.
  106. # common --incompatible_disable_non_executable_java_binary
  107. # Incompatible with the clang-tidy build mode.
  108. # TODO: Enable the flag once compatibility issues are fixed.
  109. # common --incompatible_auto_exec_groups
  110. # Incompatible with `rules_cc`.
  111. # TODO: Enable the flag once compatibility issues are fixed.
  112. # common --incompatible_no_rule_outputs_param
  113. # common --incompatible_stop_exporting_language_modules
  114. # Incompatible with `rules_pkg`.
  115. # TODO: Enable the flag once compatibility issues are fixed.
  116. # common --incompatible_disable_target_default_provider_fields
  117. # Incompatible with `rules_shell`.
  118. # TODO: Enable the flag once compatibility issues are fixed.
  119. # common --incompatible_check_visibility_for_toolchains
  120. # Enable as many incompatible flags as we can, per
  121. # https://bazel.build/release/backward-compatibility. To get the latest list,
  122. # using `bazelisk --migrate build //...` will help.
  123. common --incompatible_allow_tags_propagation
  124. common --incompatible_always_check_depset_elements
  125. common --incompatible_always_include_files_in_data
  126. common --incompatible_bazel_test_exec_run_under
  127. common --incompatible_check_sharding_support
  128. common --incompatible_check_testonly_for_output_files
  129. common --incompatible_config_setting_private_default_visibility
  130. common --incompatible_default_to_explicit_init_py
  131. common --incompatible_depset_for_java_output_source_jars
  132. common --incompatible_depset_for_libraries_to_link_getter
  133. common --incompatible_disable_autoloads_in_main_repo
  134. common --incompatible_disable_native_android_rules
  135. common --incompatible_disable_native_repo_rules
  136. common --incompatible_disable_objc_library_transition
  137. common --incompatible_disable_starlark_host_transitions
  138. common --incompatible_disable_target_provider_fields
  139. common --incompatible_disallow_ctx_resolve_tools
  140. common --incompatible_disallow_empty_glob
  141. common --incompatible_disallow_legacy_py_provider
  142. common --incompatible_disallow_sdk_frameworks_attributes
  143. common --incompatible_disallow_struct_provider_syntax
  144. common --incompatible_do_not_split_linking_cmdline
  145. common --incompatible_dont_enable_host_nonhost_crosstool_features
  146. common --incompatible_dont_use_javasourceinfoprovider
  147. common --incompatible_enable_apple_toolchain_resolution
  148. common --incompatible_enable_deprecated_label_apis
  149. common --incompatible_enable_proto_toolchain_resolution
  150. common --incompatible_enforce_config_setting_visibility
  151. common --incompatible_enforce_starlark_utf8
  152. common --incompatible_exclusive_test_sandboxed
  153. common --incompatible_fail_on_unknown_attributes
  154. common --incompatible_fix_package_group_reporoot_syntax
  155. common --incompatible_java_common_parameters
  156. common --incompatible_legacy_local_fallback
  157. common --incompatible_locations_prefers_executable
  158. common --incompatible_make_thinlto_command_lines_standalone
  159. common --incompatible_merge_fixed_and_default_shell_env
  160. common --incompatible_merge_genfiles_directory
  161. common --incompatible_modify_execution_info_additive
  162. common --incompatible_new_actions_api
  163. common --incompatible_no_attr_license
  164. common --incompatible_no_implicit_file_export
  165. common --incompatible_no_implicit_watch_label
  166. common --incompatible_objc_alwayslink_by_default
  167. common --incompatible_package_group_has_public_syntax
  168. common --incompatible_py2_outputs_are_suffixed
  169. common --incompatible_py3_is_default
  170. common --incompatible_python_disable_py2
  171. common --incompatible_python_disallow_native_rules
  172. common --incompatible_remote_use_new_exit_code_for_lost_inputs
  173. common --incompatible_remove_legacy_whole_archive
  174. common --incompatible_require_ctx_in_configure_features
  175. common --incompatible_require_linker_input_cc_api
  176. common --incompatible_run_shell_command_string
  177. common --incompatible_sandbox_hermetic_tmp
  178. common --incompatible_simplify_unconditional_selects_in_rule_attrs
  179. common --incompatible_stop_exporting_build_file_path
  180. common --incompatible_strict_action_env
  181. common --incompatible_strip_executable_safely
  182. common --incompatible_top_level_aspects_require_providers
  183. common --incompatible_unambiguous_label_stringification
  184. common --incompatible_use_cc_configure_from_rules_cc
  185. common --incompatible_use_new_cgroup_implementation
  186. common --incompatible_use_plus_in_repo_names
  187. common --incompatible_use_python_toolchains
  188. common --incompatible_validate_top_level_header_inclusions
  189. common --incompatible_visibility_private_attributes_at_definition