musllvm/scripts/config.sh
cowmonk b041f9304f Rework on scripts
Also we are now using a cross compiler to create the toolchain because
I'm too lazy to do too much scripting lmao.
2025-11-15 20:00:42 -07:00

16 lines
381 B
Bash
Executable file

# musllvm default flags
# --------------------------------
# feel free to change these however you like
#
#
# these are shared between the Makefile and scripts
#
ARCH=$(uname -m)
PROOT=${PWD}
SOURCES_FILE=${PROOT}/sources.list
FROOT="${ARCH}-musllvm"
CROSS="${PROOT}/build/cross" # cross directory
# MAKEFLAGS to parse the amounto of cores used
MAKEFLAGS="-j$(nproc) -l$(nproc)"