Christoph Niethammer
024ca0f0d6
Use all available cores by default. To make sequential builds set MAKEOPTS in sit class file or use a custom src_build function.
21 lines
530 B
Text
21 lines
530 B
Text
# Global sit configuration file
|
|
#
|
|
# Directory holding all the source tarballs
|
|
SRC_POOL=${SRC_POOL:="$HOME/src"}
|
|
|
|
# Working directory base path
|
|
WORKDIR_BASE=${WORKDIR_BASE:="$HOME/work"}
|
|
|
|
# Build class directory holing the sitclass
|
|
SCLASS_DIR=${SCLASS_DIR:="$SIT_PATH/packages"}
|
|
|
|
# basic installation directory
|
|
PREFIX_BASE=${PREFIX_BASE:="$HOME/bin"}
|
|
|
|
MAKEOPTS=${MAKEOPTS:="-j$(cat /proc/cpuinfo | grep -c processor)"}
|
|
|
|
# default platform for unknown platforms
|
|
DEFAULT_PLATFORM="laki"
|
|
|
|
# default compiler
|
|
DEFAULT_COMPILER="system"
|