summaryrefslogtreecommitdiff
path: root/etc/makepkg.conf
diff options
context:
space:
mode:
authorXiao Pan <gky44px1999@gmail.com>2024-02-09 16:21:24 -0800
committerXiao Pan <gky44px1999@gmail.com>2024-02-10 00:38:59 +0000
commitb0932dc5ff4a9d9ba969a73f82687abd2ee4d201 (patch)
tree9ae62f16150f7a88189a0002a05685fa9a45f4a7 /etc/makepkg.conf
parent75cd5da1b8b1124f1eeb8d142c1c50b34f900939 (diff)
pacnew
Diffstat (limited to 'etc/makepkg.conf')
-rw-r--r--etc/makepkg.conf8
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/makepkg.conf b/etc/makepkg.conf
index 837adafe..b390b7fd 100644
--- a/etc/makepkg.conf
+++ b/etc/makepkg.conf
@@ -1,4 +1,5 @@
#!/hint/bash
+# shellcheck disable=2034
#
# /etc/makepkg.conf
#
@@ -50,7 +51,7 @@ RUSTFLAGS="-C opt-level=2 -C target-cpu=native"
#-- Debugging flags
DEBUG_CFLAGS="-g"
DEBUG_CXXFLAGS="$DEBUG_CFLAGS"
-#DEBUG_RUSTFLAGS="-C debuginfo=2"
+DEBUG_RUSTFLAGS="-C debuginfo=2"
#########################################################################
# BUILD ENVIRONMENT
@@ -92,7 +93,7 @@ BUILDENV=(!distcc color !ccache check !sign)
#-- debug: Add debugging flags as specified in DEBUG_* variables
#-- lto: Add compile flags for building with link time optimization
#
-OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug !lto)
+OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge debug lto)
#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2
INTEGRITY_CHECK=(sha256)
@@ -137,7 +138,7 @@ DBGSRCDIR="/usr/src/debug"
COMPRESSGZ=(gzip -c -f -n)
COMPRESSBZ2=(bzip2 -c -f)
COMPRESSXZ=(xz -c -z -)
-COMPRESSZST=(zstd -c -z -q -)
+COMPRESSZST=(zstd -c -T0 --ultra -20 -)
COMPRESSLRZ=(lrzip -q)
COMPRESSLZO=(lzop -q)
COMPRESSZ=(compress -c -f)
@@ -157,3 +158,4 @@ SRCEXT='.src.tar.gz'
#
#-- Command used to run pacman as root, instead of trying sudo and su
#PACMAN_AUTH=()
+# vim: set ft=sh ts=2 sw=2 et: