common.sh (693B)
- musl_ver="1.2.5-r6"
- APKS_main="
- musl-$musl_ver.apk
- musl-dev-$musl_ver.apk
- musl-libintl-$musl_ver.apk
- "
- tcc_ver="0.9.27_git20241020-r1"
- APKS_testing="
- tcc-$tcc_ver.apk
- tcc-dev-$tcc_ver.apk
- tcc-libs-$tcc_ver.apk
- tcc-libs-static-$tcc_ver.apk
- "
- ALPINE_MIRROR="http://dl-cdn.alpinelinux.org/alpine"
- # Alpine edge is definitely not a good way to do it but I need TCC with musl and /testing/ means edge-only
- ALPINE_BRANCH="edge"
- # Architectures which alpine supports for tcc (+musl of course)
- ALPINE_ARCHES="x86 x86_64 aarch64 armhf armv7 riscv64"
- if ! test "${EXCLUDE_EXTRAS:+y}" = "y"; then
- APKS_main="${APKS_main}
- linux-headers-6.6-r1.apk"
- fi
- die() {
- echo "[Error] die: ${*}"
- exit 1
- }