From 8e58aa967737f4d2e74ccf44542ede0c68a20bd7 Mon Sep 17 00:00:00 2001 From: nakst <> Date: Tue, 1 Feb 2022 12:24:09 +0000 Subject: [PATCH] update get-toolchain --- util/build.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/build.c b/util/build.c index c695b2a..46cf984 100644 --- a/util/build.c +++ b/util/build.c @@ -1139,7 +1139,7 @@ void DoCommand(const char *l) { LoadOptions(); Compile(COMPILE_FOR_EMULATOR, atoi(GetOptionString("Emulator.PrimaryDriveMB")), NULL); } else if (0 == strcmp(l, "build-cross")) { - CallSystem("bin/script ports/gcc/port.script buildCross=true targetName=" TARGET_NAME " toolchainPrefix=" TOOLCHAIN_PREFIX); + CallSystem("bin/script ports/port.script portName=gcc buildCross=true targetName=" TARGET_NAME " toolchainPrefix=" TOOLCHAIN_PREFIX); printf("Please restart the build system.\n"); exit(0); } else if (0 == strcmp(l, "build-utilities") || 0 == strcmp(l, "u")) { @@ -1514,9 +1514,9 @@ void DoCommand(const char *l) { AddCompilerToPath(); #else if (automatedBuild) { - CallSystem("bin/script ports/gcc/port.script buildCross=true skipYesChecks=true targetName=" TARGET_NAME " toolchainPrefix=" TOOLCHAIN_PREFIX); + CallSystem("bin/script ports/port.script portName=gcc buildCross=true skipYesChecks=true targetName=" TARGET_NAME " toolchainPrefix=" TOOLCHAIN_PREFIX); } else { - CallSystem("bin/script ports/gcc/port.script buildCross=true targetName=" TARGET_NAME " toolchainPrefix=" TOOLCHAIN_PREFIX); + CallSystem("bin/script ports/port.script portName=gcc buildCross=true targetName=" TARGET_NAME " toolchainPrefix=" TOOLCHAIN_PREFIX); } exit(0);