musllvm

A pure LLVM/Clang cross compiler toolchain targeting musl C
git clone git://git.daat.foo/musllvm.git
Log | Files | Refs | README | LICENSE

config.sh (381B)


      1 # musllvm default flags
      2 # --------------------------------
      3 # feel free to change these however you like
      4 #
      5 
      6 #
      7 # these are shared between the Makefile and scripts
      8 #
      9 ARCH=$(uname -m)
     10 PROOT=${PWD}
     11 SOURCES_FILE=${PROOT}/sources.list
     12 FROOT="${ARCH}-musllvm"
     13 CROSS="${PROOT}/build/cross" # cross directory
     14 
     15 # MAKEFLAGS to parse the amounto of cores used
     16 MAKEFLAGS="-j$(nproc) -l$(nproc)"