-
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
26 additions
and
6 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
0bbaec0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it somehow possible to configure this to also suppot building for Windows on ARM64? Preferrably by cross-compiling on a Windows x64 (as thats the only thing GitHub runners support AFAIK)