You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"If this is one of the arm executables and you are not on Windows, make sure you have arm-none-eabi-binutils installed (and in your path), and try again.\n"+
63
+
"If this is one of the arm executables and you are a Windows user, make sure arm-none-eabi-as and arm-none-eabi-objcopy are in the same folder as SwissArmyKnife, or in a location referred to by your system path.";
MessageHandler.warnMessage("Assembler output",$"If you see any errors here, there was a compilation error, and the file was not created.\nThe output is as follows:\n\n{ASResult}");
74
+
if(ASResult.Contains("Error")){
75
+
return;
76
+
}
77
+
78
+
stringOBJResult=UI.objectCopy("Temp.o",x);
79
+
MessageHandler.warnMessage("Objcopy output",$"If you see any errors here, there was a linking error, and the file was not created.\nThe output is as follows:\n\n{OBJResult}");
0 commit comments