Author Topic: Anyone use Clang++ on Windows  (Read 2621 times)

Offline AndrewCot

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 678
Anyone use Clang++ on Windows
« on: September 01, 2022, 12:01:37 am »
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.

Offline blauzahn

  • Almost regular
  • **
  • Posts: 153
Re: Anyone use Clang++ on Windows
« Reply #1 on: September 01, 2022, 07:35:59 am »
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.

Offline AndrewCot

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 678
Re: Anyone use Clang++ on Windows
« Reply #2 on: September 01, 2022, 08:40:05 am »
Agree.  Thanks for the info.