static-toolbox/build/02_install_build_compiler.sh

26 lines
475 B
Bash
Raw Normal View History

2021-04-19 09:55:27 +00:00
#!/bin/bash
if [ $# -ne 1 ];then
echo "Missing arch"
exit 1
fi
ARCH="${1,,}"
case $ARCH in
2021-04-19 13:43:19 +00:00
x86_64|i686|aarch64)
ARCH="${ARCH}-linux-musl"
;;
x86)
ARCH="i686-linux-musl"
;;
arm)
ARCH="arm-linux-musleabihf"
;;
2021-04-19 09:55:27 +00:00
*)
2021-04-19 13:43:19 +00:00
echo "Invalid arch ${ARCH}"
exit 1
;;
2021-04-19 09:55:27 +00:00
esac
HOST=http://musl.cc
cd /
curl -so ${ARCH}-cross.tgz ${HOST}/${ARCH}-cross.tgz
tar -xf ${ARCH}-cross.tgz
rm ${ARCH}-cross.tgz