Skip to content

Commit

Permalink
Fix intelisense mode for clang-cl on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
poppolopoppo committed Dec 11, 2024
1 parent ade260d commit 1e94f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/hal/windows/ClangCl.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ func GetClangCompiler(arch compile.ArchType) BuildFactoryTyped[*ClangCompiler] {
UseMsvcLinker: false,
MsvcCompiler: MsvcCompiler{
Arch: arch,
CompilerRules: compile.NewCompilerRules(compile.NewCompilerAlias("clang-cl", "LLVM", arch.String())),
CompilerRules: compile.NewCompilerRules(compile.NewCompilerAlias("clang", "cl", arch.String())),
},
}
base.Assert(func() bool {
Expand Down

0 comments on commit 1e94f60

Please sign in to comment.