From dcbcf08083d0a3109c9f950b5bf1ac406fa5eced Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Sat, 26 Jul 2025 11:49:13 +0200 Subject: [PATCH] wip: reset configure args --- .docker/install-toolchain.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.docker/install-toolchain.sh b/.docker/install-toolchain.sh index 335f6a6c..12ceccdc 100644 --- a/.docker/install-toolchain.sh +++ b/.docker/install-toolchain.sh @@ -112,6 +112,9 @@ for target_arch in ${TARGET_ARCH_STR//,/ }; do GCC_CONFIGURE_ARGS="--with-arch=armv6 --with-fpu=vfp --with-float=hard" TARGET="arm-linux-musleabihf" ;; + *) + GCC_CONFIGURE_ARGS="" + ;; esac export CFLAGS="-O${OPT} -ffunction-sections -fdata-sections -fmerge-all-constants -fomit-frame-pointer -fPIC"