mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 03:30:06 +00:00
efb0fce2d6
* Use bazel 7 and bzlmod Many of our dependencies are now using bazel 7 and the new bzlmod module system. This has been breaking our autoroll; this PR should fix the issues we've been having with that. It may or may not be worthwhile to update effcee to use bzlmod as well; this would let us get rid of WORKSPACE entirely. * Try to force cla check to rerun
8 lines
202 B
Plaintext
8 lines
202 B
Plaintext
# Enable Bzlmod for every Bazel command
|
|
common --enable_bzlmod
|
|
|
|
build --enable_platform_specific_config
|
|
build:linux --cxxopt=-std=c++17
|
|
build:macos --cxxopt=-std=c++17
|
|
build:windows --cxxopt=/std:c++17
|