From 22a109e4b4f3379bf08c818d5bbfd1c696da843c Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 2 Jun 2025 09:44:49 +1200 Subject: [PATCH] 'Generic Commit' --- src/dropshell-build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/dropshell-build b/src/dropshell-build index 4981d5d..9c59188 100755 --- a/src/dropshell-build +++ b/src/dropshell-build @@ -161,6 +161,7 @@ function build() { # if have the -m option, then build for multiple architectures if [ $MULTIBUILD -eq 1 ]; then + echo "Building for multiple architectures" # get all the architectures from the musl-cross-make directory local musl_toolchains mapfile -t musl_toolchains < <(ls -d "${MUSL_ROOT_PATH}/"*) @@ -176,14 +177,15 @@ function build() { buildthis="true" fi if [ "$buildthis" = "true" ]; then - echo "Building for $arch with $tchain" - set_current_arch "$tchain" + echo "Building for toolchain $arch from $tchain" + set_current_arch "$arch" build_arch "$CMAKE_DIR" else echo "Skipping $tchain" fi done else + echo "Building for host architecture $HOSTARCH" set_current_arch "$HOSTARCH-linux-musl-native" build_arch "$CMAKE_DIR" fi