Support clang.exe/clang++.exe #823
Labels
enhancement
an enhancement to the product that is either not present or an improvement to an existing feature
Feature: debug/launch
Feature: kits
Milestone
CMake Tools should detect clang.exe/clang++.exe (clang that understands GNU arguments) as a kit, CMake now supports these compilers on Windows. Currently kit detection only creates a clang-cl.exe kit (clang that understands MSVC's cl.exe arguments).
Manually editing
cmake-tools-kits.json
to create a clang/clang++ kit works, CMake Tools should create this kit itself during "scan for kits".CMake Tools incorrectly tries to use gdb for debugging when using the kit, it should use the same debugger it uses for the clang-cl.exe kit. The default vscode Windows C/C++ debug config in
launch.json
, with"program": "${command:cmake.launchTargetPath}"
makes debugging work with my clang/clang++ kit.The text was updated successfully, but these errors were encountered: