-
Notifications
You must be signed in to change notification settings - Fork 162
Description
I am trying to build this on windows with following commandline:
`c:\tools\bazel.exe build -c dbg --cxxopt=/std:c++20 --host_cxxopt=/std:c++20 --copt=/std:c++20 --host_copt=/std:c++20 --subcommands --define=use_icu=false --action_env=CC="c:\Program Files\LLVM\bin\clang-cl.exe" --action_env=CXX="c:\Program Files\LLVM\bin\clang++.exe" --define=protobuf_allow_msvc=true --compiler=clang-cl --config=windows //quiche:masque_udp_proxy_client --verbose_failures
`
But my bazel is picking msvc 22 cl.exe and not clang-cl
I am getting error #error "Only clang-cl is supported on Windows, see https://crbug.com/988071" for google url project.
Question:
Does this project supported on windows with bazel and MSVC 22 and clang ?
Please let me know if any configuration I am missing ?