diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2024-09-14 15:39:16 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2024-09-14 15:39:16 -0700 |
commit | 64c6ec8180e19f5ab0150bc558427e13f18cc999 (patch) | |
tree | 10d2da5feb9cde0b338800ec59fcbe8e23faa733 /etc | |
parent | 00665f717a7f5925e0dcdc387a83c38109a44d43 (diff) |
migrate rustflags to /etc/makepkg.conf.d/rust.conf, merge zstd pacdiff
https://gitlab.archlinux.org/archlinux/packaging/packages/pacman/-/commit/f02d4d01cc9bcaf566e72dbb769250f8c2752e9e
https://gitlab.archlinux.org/pacman/pacman/-/commit/71764b6d4cdee1f74cfc603050ced59009950169
https://gitlab.archlinux.org/archlinux/packaging/packages/pacman/-/commit/319671cc720a31cfaa81e25354d58699a1bedf6c
Diffstat (limited to 'etc')
-rw-r--r-- | etc/makepkg.conf | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/etc/makepkg.conf b/etc/makepkg.conf index d750f866..edfed293 100644 --- a/etc/makepkg.conf +++ b/etc/makepkg.conf @@ -48,13 +48,11 @@ CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" LDFLAGS="-Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now \ -Wl,-z,pack-relative-relocs" LTOFLAGS="-flto=auto" -RUSTFLAGS="-Cforce-frame-pointers=yes -C opt-level=2 -C target-cpu=native" #-- Make Flags: change this for DistCC/SMP systems #MAKEFLAGS="-j2" #-- Debugging flags DEBUG_CFLAGS="-g" DEBUG_CXXFLAGS="$DEBUG_CFLAGS" -DEBUG_RUSTFLAGS="-C debuginfo=2" ######################################################################### # BUILD ENVIRONMENT @@ -144,7 +142,7 @@ LIB_DIRS=('lib:usr/lib' 'lib32:usr/lib32') COMPRESSGZ=(gzip -c -f -n) COMPRESSBZ2=(bzip2 -c -f) COMPRESSXZ=(xz -c -z -) -COMPRESSZST=(zstd -c -T0 --ultra -20 -) +COMPRESSZST=(zstd -c -T0 -) COMPRESSLRZ=(lrzip -q) COMPRESSLZO=(lzop -q) COMPRESSZ=(compress -c -f) |