From ae1240cd3a9d564a3ccf97a92d0aa12a4ad1751d Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 1 Nov 2025 16:24:35 +0100 Subject: [PATCH] Support building C recipes for i586-unknown-redox --- config.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.sh b/config.sh index 8e9801985..2a86500dc 100755 --- a/config.sh +++ b/config.sh @@ -15,6 +15,8 @@ ARCH="${TARGET%%-*}" HOST="$TARGET" if [ x"${HOST}" == x"riscv64gc-unknown-redox" ] ; then HOST="riscv64-unknown-redox" +elif [ x"${HOST}" == x"i586-unknown-redox" ] ; then + HOST="i686-unknown-redox" fi # Cookbook requires correct CWD to work