Does anyone use clang++ on windows? If you do have you come across any issues with paths in the object/executable?
I have found that some MSYS2 LLVM tools do not like MS path delimiters, but work with Unix path delimiters.
I do not but I do use clang++ and clang-tidy from cb under linux all the time.
IMHO, not liking MS path delimiters can be regarded as a feature, not an issue :). It nudges programmers towards writing more portable code. MSVC accepts happily Unix path delimiters as well.
Agree. Thanks for the info.