ide: No more using -mthreads with clang in win32

This commit is contained in:
Mirek Fidler 2022-04-04 18:05:34 +02:00
parent 340ce65c08
commit 69ede7b2b9

View file

@ -136,8 +136,8 @@ bool GccBuilder::BuildPackage(const String& package, Vector<String>& linkfile, V
// if(IsVerbose())
// cc << " -v";
if(HasFlag("WIN32")/* && HasFlag("MT")*/)
cc << " -mthreads";
// if(HasFlag("WIN32")/* && HasFlag("MT")*/) // not needed anymore
// cc << " -mthreads";
if(HasFlag("DEBUG_MINIMAL") || HasFlag("DEBUG_FULL")) {
cc << (HasFlag("WIN32") && HasFlag("CLANG") ? " -gcodeview -fno-limit-debug-info" : " -ggdb");