diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2024-09-14 15:39:16 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2024-09-14 16:24:53 -0700 |
commit | 04e4b7430f93a714298ba41c98b86fba738c1849 (patch) | |
tree | 519268f6f72aa6ba0437bdb4fdee04cd3fa2b5ed /etc/makepkg.conf | |
parent | b3d31e8b5d86394fb0576222da5cd5fed4e9b61f (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/makepkg.conf')
-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 c21225ee..112058ce 100644 --- a/etc/makepkg.conf +++ b/etc/makepkg.conf @@ -50,13 +50,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="" -RUSTFLAGS="-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="" ######################################################################### # BUILD ENVIRONMENT @@ -146,7 +144,7 @@ LIB_DIRS=('lib:usr/lib') 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) |