33 lines
801 B
Bash
Executable File
33 lines
801 B
Bash
Executable File
#!/bin/bash
|
|
# See "etc/utils/linux/mk-musl.sh" in order to build musl libc!
|
|
set -e
|
|
cd -- "$(dirname -- "${BASH_SOURCE[0]}")"
|
|
|
|
function mk_slunk() {
|
|
local command="make -B CC=/usr/local/musl/${1}/bin/musl-gcc STATIC=1 STRIP=1 FLTO=1"
|
|
if [ ! -z "${2}" ]; then
|
|
command="${command} ${2}"
|
|
fi
|
|
$BASH -x -c "${command}"
|
|
cp -vf "frontend/bin/slunkcrypt" "out/slunkcrypt-${1}"
|
|
}
|
|
|
|
if [[ "$OSTYPE" != "linux-gnu"* ]]; then
|
|
echo "This script is supposed to run on the linux platform !!!"
|
|
exit 1
|
|
fi
|
|
|
|
rm -rf "out" && mkdir -p "out"
|
|
|
|
$BASH -x -c "make clean"
|
|
|
|
mk_slunk "x86_64" "MARCH=x86-64 MTUNE=nocona"
|
|
mk_slunk "i686" "MARCH=pentiumpro MTUNE=pentium3"
|
|
mk_slunk "armel"
|
|
mk_slunk "armhf"
|
|
mk_slunk "arm64"
|
|
mk_slunk "mipsel"
|
|
mk_slunk "mips64el"
|
|
|
|
printf "\033[1;32m\nBuild completed successfully.\033[0m\n\n"
|