mstorsjo wrote: > I assume it's been this way for a while. The lldb build bots use MSVC instead > of clang, just like the release builds. This could have only been caught by a > maintainer trying to build with clang, or an end user trying to build from > source using clang (which is how we found this issue in the first place).
Also, if building with `clang-cl`, this isn't an issue. It's only an issue if building with the `clang` driver, with the GNU like command line interface, in an MSVC environment. That is a much less tested configuration. This configuration is tricky because it doesn't set the `MSVC` variable in cmake (as the compiler doesn't use the MSVC cl.exe style options), while it still expects other MSVC style aspects in the environment. https://github.com/llvm/llvm-project/pull/197493 _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
