diff options
| author | Xiao Pan <gky44px1999@gmail.com> | 2024-02-09 16:38:30 -0800 | 
|---|---|---|
| committer | Xiao Pan <gky44px1999@gmail.com> | 2024-02-09 16:38:30 -0800 | 
| commit | 6f09dfc8103ca7515d33e9ace140f0265fd71aa7 (patch) | |
| tree | d5e332b871b909911fed5b0c61a7a332cb3ffd4a /etc/makepkg.conf | |
| parent | bdde7031ec1ff3c7718bf62ba63f194743b1c6b0 (diff) | |
pacnew
Diffstat (limited to 'etc/makepkg.conf')
| -rw-r--r-- | etc/makepkg.conf | 11 | 
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:  | 
