smlinux/bldpkg.conf
PktSurf 2e10ab6dad Changes to bldpkg:
-> Replaced basename and dirname with bash's built-in pattern matching
-> Added code to prompt for resuming an existing build in the presence of .$app.extraction.complete
-> Fixed some comments relating to $resumepkgbuild
Changes to bldpkg.conf:
-> Updated pkg names in tmpfsexceptionlist and packagesrequiringswap array
-> Added validatecompilers, compilerverbosity and autoresumepkgbuild variables
2023-03-13 23:44:49 +05:30

203 lines
7.7 KiB
Text

# /etc/bldpkg.conf
# Part of the SMLinux distribution
# This file allows you to define paths and variable values and prepares a
# complete build environment for creating SMLinux-compatible packages
# Please refer to sample.SMBuild.explained in the buildsamples directory
# for complete explanation.
# Set the package extension. Makepkg will use this to figure out the
# compression utility. Pick one out of tbz/tgz/txz/tlz.
pkgext="tlz"
# Set compressor options. These will be exported in the mkfinalpkg function
# for makepkg to pickup.
gzipopts="-9c"
bzipopts="-9c"
lzipopts="-0c"
xzopts="-9c"
# Set this variable if you wish to be prompted for installing (or upgrading)
# the package after it has been built successfully. 0 to disable, 1 to
# enable. Ignored for SSB autobuilds.
installprompt=0
# Set this variable if you wish to be prompted for extracting contents of
# the newly-built package installer file into a new subdirectory called
# "test" within the current source directory the build was invoked from. 0
# to disable, 1 to enable. Ignored for SSB autobuilds.
extractprompt=0
# Whether to use distcc for distributed compilations. 0 to disable, 1 to
# enable.
globaldistcc=0
# Whether to use ccache for faster consecutive rebuilds. Set 0 to disable,
# 1 to enable.
globalccache=0
# Whether to use sccache for faster consecutive builds. Set 0 to disable,
# 1 to enable
globalsccache=0
# Typical $PATH layout when using ccache + distcc + gcc, assuming gcc is in
# /bin, should be:
# /opt/ccache/bin:/opt/distcc/bin:/bin:
# ccache first, then distcc and then local gcc. Kindly ensure your $PATH is
# set in a similar manner.
#
# HINT:
# To create distcc/ccache symlinks, run this for distcc as an example:
# $ mkdir -p /opt/distcc/bin
# $ for f in cc c++ gcc g++ ; do ln -s /bin/distcc /opt/distcc/bin/$f ; done
# Replace distcc with ccache for creating distcc symlinks
# Distcc binary location
distccbinpath="/bin/distcc"
# Distcc symlink paths created for cc/gcc/c++/g++
distccsympath="/opt/distcc/bin"
# Ccache binary location
ccachebinpath="/bin/ccache"
# Ccache symlink paths created for cc/gcc/c++/g++
ccachesympath="/opt/ccache/bin"
# Sccache binary location
sccachebinpath="/bin/sccache"
# Scache hardlink paths created for cc/gcc/c++/g++
sccachepath="/opt/sccache/bin"
# Define the distcc timeout period in seconds. This prevents distcc from
# falling back to local compiler if a distributed job takes a long time to
# complete. We set it to 30 minutes instead of 5 minutes which is default.
DISTCC_IO_TIMEOUT="1800"
# Define network hosts who will take part in the compile. Please refer to
# distcc manual for complete info. Must be defined in /etc/hosts unless they
# are an IP. Tip: Distcc by default will use only 2 cores on the local
# machine.
DISTCC_HOSTS="--randomize localhost/2 host0/2,lzo"
# Add sum total of the above CPU cores/threads or add your own count
# prepended with "-j".
cputhreads="-j4"
# Declare a parent temporary directory
parenttmp="/tmp"
# Whether to use tmpfs for the package build. The package source will be
# extracted and compiled inside the tmpfs directory and ccache will be
# disabled to prevent writes to the disk. 1 to enable, 0 to disable.
usetmpfs=0
# Set the tmpfs directory if the above variable is enabled
tmpfsdir="$parenttmp/tmpfsdir"
# Define the nontmpfs base directory
nontmpfsdir="$parenttmp/sml"
# Directory where the final package installer, example:
# openssh-8.1-x86_64-1sml.tlz should be placed in. Again, should be outside
# tmpfs dir. Also declared and defined in autobuild section file, so values
# may differ. This is for manual builds.
pkgdest=${pkgdest:-$parenttmp/sml/packages/}
# Whether you want to preserve the build directory which contains the extracted source,
# for example /tmp/sml/openssh.src/openssh-8.1. usetmpfs variable, if set to 1, will
# auto-reset this variable to 0 and the directory will be deleted. Set 1 to
# preserve it, 0 to rm -rf it automatically at the end of each build
preservebuilddir=1
# Whether you want to preserve the package staging directory. for example
# /tmp/sml/package-openssh. usetmpfs variable, if set to 1, will auto-reset this
# variable to 0 and the directory will be deleted. Set 1 to preserve it, 0 to
# rm -rf it automatically at the end of each build
preservepackagedir=1
# Whether to show build summary. Set to 1 to enable, 0 to disable.
showsummary=1
# Whether to show colours in the build summary. Set 1 to enable, 0 to
# disable. Also, only show colours if the build is invoked manually and not
# through the SSB autobuild system where logging is automatic or when
# logging is invoked using log ./<package.SMBuild>.
[ -z "$colours" ] && colours=1
# Define whether to check for swap. 1 to enable, 0 to disable.
swapcheck=0
# If above variable is set to 1, define minimum swap size required for huge
# compiles in KiB
swapsize=2048000
# Define your compilers here. They must be in $PATH *AFTER* ccache and
# distcc directories
CC="gcc"
CXX="g++"
export CC CXX
# Set CPU-specific compiler variables. Only aarch64 and x86_64 supported.
# https://github.com/sakaki-/gentoo-on-rpi-64bit/blob/master/reference/compile_run_benchmarks.sh
# https://www.raspberrypi.org/forums/viewtopic.php?t=11629
# Set debug flag
gccdebug="-g3"
# For aarch64
# aarch64-musl-linux is not recognised by most configure scripts and I haven't
# seen any compile except for gmp going wrong with arm-musl-linux
aarch64hostdist="--host=arm-musl-linux"
aarch64builddist="--build=arm-musl-linux"
aarch64cflags="-O2 -fPIC -pipe -march=armv8-a+crc -mtune=cortex-a53"
# For x86_64
x8664builddist="--build=x86_64-musl-linux"
x8664cflags="-O2 -fPIC -pipe"
# Set path to configure cache file that contains predefined answers to several
# tests autoconf scripts run. Credits: Sabotage Linux.
configsite="/etc/config.cache"
# Whether to check for build/runtime dependencies
checkdependencies=0
# This array lists the packages whose sources will not be extracted and
# compiled inside tmpfs, if tmpfs is <= 2GB. If your tmpfs is >= 2GB, empty
# out this entire list.
tmpfsexceptionlist=( mozjs nodejs firefox wxwidgets palemoon qemu dovecot gdb gnumeric \
gtk+2 gtk+3 guile llvm mariadb mesa mesa-demos mupdf perl postfix python2 \
python3 rtorrent spice python-lxml kernel libreoffice mono \
qtwebengine kernel-source rust webkitgtk boost go llvm-runtimes )
# This array lists the packages which require additional swap for
# compilation to prevent the system from becoming completely unresponsive
# for want of more memory.
packagesrequiringswap=( mozjs nodejs firefox palemoon qemu gdb gnumeric gtk+2 \
gtk+3 guile llvm mariadb mesa mupdf libtorrent rtorrent \
qtwebengine )
# This array is to protect important system directories from being rm -rf'd
# accidentally. Sometimes you never know what value the variable being
# expanded as an argument for rm -rf holds, so prevention is better.
# Populate this list appropriately and use it inside an if/else whenever
# rm -rf is about to be called.
protecteddirectories=( "/" "/bin" "/boot" "/dev" "/etc" "/home" "/include" \
"/lib" "/libexec" "/local" "/man" "/media" "/mnt" "/opt" "/proc" \
"/root" "/run" "/sbin" "/share" "/srv" "/sys" "/usr" "/var" )
# Whether to output application build status in HTML format. Set 1 to enable,
# 0 to disable.
htmloutput=1
# Invoke the audit daemon for logging write accesses to system directories
# outside the build and staging directory
useauditd=0
# Validate distcc, ccache and sccache depending on which compiler is enabled
# globally above
validatecompilers=0
# Be verbose about compiler output. Make and Cmake currently supported.
compilerverbosity=0
# Whether to prompt a user to resume a build if
# $tmp/src/.$app.extraction.complete is found or to build the package from scratch
autoresumepkgbuild=0