-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
# Set up to use C++20. | ||
build --cxxopt='-std=c++20' | ||
build --cxxopt=-std=c++20' | ||
|
||
# Use the builtin crc32 for fast integer hashing. | ||
build --copt=-mcrc32 | ||
|
||
# Enable Bzlmod for every Bazel command | ||
common --enable_bzlmod | ||
|
||
# Use the builtin crc32 for fast integer hashing. | ||
build --copt=-mcrc32 | ||
|
||
# To create this file, please run: | ||
# bazel run @com_google_fuzztest//bazel:setup_configs > fuzztest.bazelrc | ||
try-import %workspace%/fuzztest.bazelrc | ||
|
||
build:win_clang --extra_toolchains=@local_config_cc//:cc-toolchain-x64_windows-clang-cl | ||
build:win_clang --extra_execution_platforms=//:x64_windows-clang-cl | ||
build:win_clang --compiler=clang-cl | ||
build:win_clang --cxxopt=/std:c++20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters