diff options
| author | Xiao Pan <gky44px1999@gmail.com> | 2024-02-09 16:21:24 -0800 | 
|---|---|---|
| committer | Xiao Pan <gky44px1999@gmail.com> | 2024-02-09 16:21:24 -0800 | 
| commit | 2e9e0fcc5dc687ff7245d57bbfacbff1ec864f20 (patch) | |
| tree | 842e34b5df4dfb7aa998289031441971a78c0edb /etc | |
| parent | 9243d6a2ad365374f301e943413e502da7cfcf87 (diff) | |
pacnew
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/makepkg.conf | 8 | 
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: | 
