There was an error while loading. Please reload this page.
1 parent 1ca501d commit 5e6c874Copy full SHA for 5e6c874
mainwindow.cpp
@@ -962,8 +962,11 @@ void MainWindow::buildProgram(bool debugMode)
962
linkerOutput = Common::pathInTemp("linkererror.txt");
963
linkerProcess.setStandardOutputFile(linkerOutput);
964
linkerProcess.setStandardErrorFile(linkerOutput, QIODevice::Append);
965
-
+
966
+ #ifdef Q_OS_WIN32
967
+ #else
968
linkerArguments << "-pthread";
969
+ #endif
970
if (settings.value("sasmverbose", false).toBool())
971
printLog("Linker: "+linker+" "+linkerArguments.join(" ")+"\n", Qt::darkGreen);
972
0 commit comments