1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-08 17:54:40 +00:00

Default runner is now x64sc. Closes #348

This commit is contained in:
jespergravgaard 2020-03-31 22:55:58 +02:00
parent b8a2e10fd8
commit 244f329ab0

View File

@ -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);
}