@@ -966,7 +966,7 @@ void detectWindowsClang(DETECT_ARGS)
966966 auto &c = addProgram (s, PackageId (" org.LLVM.clang" , v), p);
967967 }
968968 auto c = p->getCommand ();
969- c->push_back (" -Wno-everything" );
969+ // c->push_back("-Wno-everything");
970970 // is it able to find VC STL itself?
971971 // COpts2.System.IncludeDirectories.insert(base_llvm_path / "lib" / "clang" / C->getVersion().toString() / "include");
972972 }
@@ -987,7 +987,7 @@ void detectWindowsClang(DETECT_ARGS)
987987 auto &c = addProgram (s, PackageId (" org.LLVM.clangpp" , v), p);
988988 }
989989 auto c = p->getCommand ();
990- c->push_back (" -Wno-everything" );
990+ // c->push_back("-Wno-everything");
991991 // is it able to find VC STL itself?
992992 // COpts2.System.IncludeDirectories.insert(base_llvm_path / "lib" / "clang" / C->getVersion().toString() / "include");
993993 }
@@ -1013,8 +1013,8 @@ void detectNonWindowsCompilers(DETECT_ARGS)
10131013 };
10141014
10151015 resolve_and_add (" ar" , " org.gnu.binutils.ar" );
1016- resolve_and_add (" as" , " org.gnu.gcc.as" );
1017- resolve_and_add (" ld" , " org.gnu.gcc.ld" );
1016+ // resolve_and_add("as", "org.gnu.gcc.as"); // not needed
1017+ // resolve_and_add("ld", "org.gnu.gcc.ld"); // not needed
10181018
10191019 resolve_and_add (" gcc" , " org.gnu.gcc" );
10201020 resolve_and_add (" g++" , " org.gnu.gpp" );
@@ -1026,8 +1026,8 @@ void detectNonWindowsCompilers(DETECT_ARGS)
10261026 }
10271027
10281028 // llvm/clang
1029- resolve_and_add (" llvm-ar" , " org.LLVM.ar" );
1030- resolve_and_add (" lld" , " org.LLVM.ld" );
1029+ // resolve_and_add("llvm-ar", "org.LLVM.ar"); // not needed
1030+ // resolve_and_add("lld", "org.LLVM.ld"); // not needed
10311031
10321032 resolve_and_add (" clang" , " org.LLVM.clang" );
10331033 resolve_and_add (" clang++" , " org.LLVM.clangpp" );
0 commit comments