From: Orgad Shaneh Date: Thu, 3 Feb 2022 20:19:55 +0000 (+0200) Subject: fix: Fix clang-cl display name (#1003) X-Git-Tag: v4.6~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e972aa333fa12b48a176569fc045e32514c333c3;p=thirdparty%2Fccache.git fix: Fix clang-cl display name (#1003) --- diff --git a/src/Config.cpp b/src/Config.cpp index 61e621647..09531ff71 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -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);