Skip to content

Commit

Permalink
Support LLVM17 in llvm-rc auto-detection
Browse files Browse the repository at this point in the history
llvm-rc tweaked the title slightly in `llvm-rc /?` to mention that it's
the LLVM variant of rc.
  • Loading branch information
roblabla committed Jan 5, 2024
1 parent 7c7a98a commit dfc4b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/non_windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit dfc4b39

Please sign in to comment.