]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
fix: Fix clang-cl display name (#1003)
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>
Thu, 3 Feb 2022 20:19:55 +0000 (22:19 +0200)
committerGitHub <noreply@github.com>
Thu, 3 Feb 2022 20:19:55 +0000 (21:19 +0100)
src/Config.cpp

index 61e621647ff6bd2ab03c7f3de2ebb397e1c45a2b..09531ff71920b063d3346c80488e17ce66246299 100644 (file)
@@ -451,9 +451,10 @@ compiler_type_to_string(CompilerType compiler_type)
   switch (compiler_type) {
   case CompilerType::auto_guess:
     return "auto";
+  case CompilerType::clang_cl:
+    return "clang-cl";
 
     CASE(clang);
-    CASE(clang_cl);
     CASE(gcc);
     CASE(msvc);
     CASE(nvcc);