19 lines
390 B
Plaintext
19 lines
390 B
Plaintext
#
|
|
# bldr.conf - settings for bldr
|
|
#
|
|
|
|
# Which directory bldr will output packages to
|
|
export BLDR_OUT_DIR="/home/arco/Projects/bldr-pkgs"
|
|
|
|
# Compilation flags
|
|
export CFLAGS="-O2 -fstack-protector-strong -static -pie"
|
|
export CXXFLAGS="${CFLAGS}"
|
|
export LDFLAGS="-static"
|
|
|
|
# Path to Everest toolchain
|
|
export TOOLCHAIN_PATH="/home/arco/Projects/x86_64-linux-musl-toolchain"
|
|
|
|
#
|
|
# end bldr.conf
|
|
#
|