From 1e94f60f007bbcad7d656947b5daa27126b57d12 Mon Sep 17 00:00:00 2001 From: poppolopoppo Date: Wed, 11 Dec 2024 22:49:50 +0100 Subject: [PATCH] Fix intelisense mode for clang-cl on windows --- internal/hal/windows/ClangCl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/hal/windows/ClangCl.go b/internal/hal/windows/ClangCl.go index 5bb0211..4907864 100644 --- a/internal/hal/windows/ClangCl.go +++ b/internal/hal/windows/ClangCl.go @@ -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 {