From 36409cc472c8b8f08e7ad60ea4282189b3f5ea71 Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Sun, 23 May 2021 12:13:29 +1000 Subject: [PATCH] add PowerPC target to scripts/dependencies.sh --- scripts/dependencies.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/dependencies.sh b/scripts/dependencies.sh index bcdff78..3689d3d 100755 --- a/scripts/dependencies.sh +++ b/scripts/dependencies.sh @@ -38,6 +38,10 @@ case "$1" in TOOL=i686-w64-mingw32 OUT=$TOOL ;; + powerpc ) + TOOL=powerpc-linux-musl + OUT=$TOOL + ;; *) echo "Invalid target!" ; exit 1 ;; esac