14 lines
531 B
Bash
14 lines
531 B
Bash
|
|
# Modify these definitions to fit your host system
|
||
|
|
# PREFIX: Path on your host system where the toolchain shall be installed
|
||
|
|
export PREFIX="/opt/karlos-toolchain"
|
||
|
|
# SYSROOT: Path to the 'sysroot' folder in your local copy of the karlos repository
|
||
|
|
export SYSROOT="$HOME/karlos/karlos/sysroot"
|
||
|
|
|
||
|
|
export MAKEFLAGS="-j 10"
|
||
|
|
|
||
|
|
# Do not modify the following lines
|
||
|
|
# TARGET: The target triplet
|
||
|
|
export TARGET="x86_64-karlos"
|
||
|
|
# Temporarily add PREFIX to PATH so the toolchain can find itself during compilation
|
||
|
|
export PATH="$PREFIX/bin:$PATH"
|