diff options
author | Derek Mauro <dmauro@google.com> | 2024-01-29 15:04:23 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-01-29 15:05:26 -0800 |
commit | 04af270f6d3a0e647946663764a5f869c104af8f (patch) | |
tree | 956208ba9cd36ce7f15c6ac3755c0ed23c8a7ff5 /MODULE.bazel | |
parent | d5eb503257f23d41f3e67933ffd85fb989141acb (diff) | |
download | abseil-04af270f6d3a0e647946663764a5f869c104af8f.tar.gz abseil-04af270f6d3a0e647946663764a5f869c104af8f.tar.bz2 abseil-04af270f6d3a0e647946663764a5f869c104af8f.zip |
Add empty WORKSPACE.bzlmod
When bzlmod is enabled and WORKSPACE.bzlmod exists, the content of
WORKSPACE is ignored. This prevents bzlmod builds from unintentionally
depending on the WORKSPACE file.
This exposed some small problems with our clang-cl configuration,
which are also fixed in this change.
PiperOrigin-RevId: 602511311
Change-Id: I0ba411edde2df0e17f4eeede4117ddb6934dd8f8
Diffstat (limited to 'MODULE.bazel')
-rw-r--r-- | MODULE.bazel | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MODULE.bazel b/MODULE.bazel index 18190e8e..fc1534a7 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -20,6 +20,9 @@ module( compatibility_level = 1, ) +cc_configure = use_extension("@bazel_tools//tools/cpp:cc_configure.bzl", "cc_configure_extension") +use_repo(cc_configure, "local_config_cc") + # Only direct dependencies need to be listed below. # Please keep the versions in sync with the versions in the WORKSPACE file. |