From dfc4b39bdd8fc61f0a938f5c4046bff6ee768503 Mon Sep 17 00:00:00 2001 From: roblabla Date: Fri, 5 Jan 2024 11:19:58 +0100 Subject: [PATCH] Support LLVM17 in llvm-rc auto-detection llvm-rc tweaked the title slightly in `llvm-rc /?` to mention that it's the LLVM variant of rc. --- src/non_windows.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/non_windows.rs b/src/non_windows.rs index 018f553..56e03c8 100644 --- a/src/non_windows.rs +++ b/src/non_windows.rs @@ -147,7 +147,7 @@ fn guess_compiler_variant(s: &str) -> Compiler { executable: s.to_string().into(), tp: CompilerType::WindRes, } - } else if out.stdout.starts_with(b"OVERVIEW: Resource Converter") { + } else if out.stdout.starts_with(b"OVERVIEW: Resource Converter") || out.stdout.starts_with(b"OVERVIEW: LLVM Resource Converter") { Compiler { executable: s.to_string().into(), tp: CompilerType::LlvmRc,