summaryrefslogtreecommitdiff
path: root/etc/makepkg.conf
diff options
context:
space:
mode:
authorXiao Pan <gky44px1999@gmail.com>2024-02-09 16:38:30 -0800
committerXiao Pan <gky44px1999@gmail.com>2024-02-09 16:38:30 -0800
commit6f09dfc8103ca7515d33e9ace140f0265fd71aa7 (patch)
treed5e332b871b909911fed5b0c61a7a332cb3ffd4a /etc/makepkg.conf
parentbdde7031ec1ff3c7718bf62ba63f194743b1c6b0 (diff)
pacnew
Diffstat (limited to 'etc/makepkg.conf')
-rw-r--r--etc/makepkg.conf11
1 files changed, 7 insertions, 4 deletions
diff --git a/etc/makepkg.conf b/etc/makepkg.conf
index af18314e..59db3a23 100644
--- a/etc/makepkg.conf
+++ b/etc/makepkg.conf
@@ -1,4 +1,6 @@
#!/hint/bash
+# shellcheck disable=2034
+
#
# /etc/makepkg.conf
#
@@ -50,9 +52,9 @@ RUSTFLAGS="-C opt-level=2 -C target-cpu=native"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"
#-- Debugging flags
-DEBUG_CFLAGS="-g -fvar-tracking-assignments"
-DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
-#DEBUG_RUSTFLAGS="-C debuginfo=2"
+DEBUG_CFLAGS="-g"
+DEBUG_CXXFLAGS="$DEBUG_CFLAGS"
+DEBUG_RUSTFLAGS=""
#########################################################################
# BUILD ENVIRONMENT
@@ -139,7 +141,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)
@@ -159,3 +161,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: