mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-11-03 12:07:26 +00:00
Default runner is now x64sc. Closes #348
This commit is contained in:
parent
b8a2e10fd8
commit
244f329ab0
@ -398,7 +398,7 @@ public class KickC implements Callable<Void> {
|
||||
if(execute) {
|
||||
System.out.println("Executing " + prgPath);
|
||||
Path viceSymbolsPath = outputDir.resolve(fileBaseName + ".vs");
|
||||
String executeCommand = "x64 " + "-moncommands " + viceSymbolsPath + " " + prgPath.toString();
|
||||
String executeCommand = "x64sc " + "-moncommands " + viceSymbolsPath + " " + prgPath.toString();
|
||||
if(verbose) {
|
||||
System.out.println("Executing command: " + executeCommand);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user