From 9dde7dcd701266d36563a38da7c781fa1a9cc1c5 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Sat, 30 Apr 2022 02:40:47 +0200 Subject: [PATCH] Ports: Fix the default Toolchain name in .hosted_defs.sh --- Ports/.hosted_defs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/.hosted_defs.sh b/Ports/.hosted_defs.sh index 7f7e9fbaf4..97d6d50423 100644 --- a/Ports/.hosted_defs.sh +++ b/Ports/.hosted_defs.sh @@ -3,7 +3,7 @@ SCRIPT="$(dirname "${0}")" export SERENITY_ARCH="${SERENITY_ARCH:-i686}" -export SERENITY_TOOLCHAIN="${SERENITY_TOOLCHAIN:-GCC}" +export SERENITY_TOOLCHAIN="${SERENITY_TOOLCHAIN:-GNU}" if [ -z "${HOST_CC:=}" ]; then export HOST_CC="${CC:=cc}"