diff options
author | Frederik “Freso” S. Olesen <freso.dk@gmail.com> | 2024-02-14 08:38:48 +0100 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2024-02-29 21:39:22 +0100 |
commit | 7a9ef3bc57e90ec97c67e3710ba8c7f4d48bbe1c (patch) | |
tree | ff42813f69eeb4d98a465c3022a55b7d0b83a3c3 | |
parent | 354c9dcd123711191f77813acf35343e8a4849eb (diff) | |
download | devtools-7a9ef3bc57e90ec97c67e3710ba8c7f4d48bbe1c.tar.xz |
feat(makepkg.conf): Add no-omit-frame-pointer flags by default
RFC-26 proposes to add -fno-omit-frame-pointer and
-mno-omit-leaf-frame-pointer to the default compilation flags
to improve the effectiveness of profiling and debugging tools.
See https://rfc.archlinux.page/0026-fno-omit-frame-pointer/
-rw-r--r-- | config/makepkg/x86_64.conf | 5 | ||||
-rw-r--r-- | config/makepkg/x86_64_v3.conf | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/config/makepkg/x86_64.conf b/config/makepkg/x86_64.conf index 0591c48..7f3ba07 100644 --- a/config/makepkg/x86_64.conf +++ b/config/makepkg/x86_64.conf @@ -42,12 +42,13 @@ CHOST="x86_64-pc-linux-gnu" #CPPFLAGS="" CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \ -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security \ - -fstack-clash-protection -fcf-protection" + -fstack-clash-protection -fcf-protection \ + -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" 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="" +RUSTFLAGS="-Cforce-frame-pointers=yes" #-- Make Flags: change this for DistCC/SMP systems #MAKEFLAGS="-j2" #-- Debugging flags diff --git a/config/makepkg/x86_64_v3.conf b/config/makepkg/x86_64_v3.conf index 32e5067..8f0b4f9 100644 --- a/config/makepkg/x86_64_v3.conf +++ b/config/makepkg/x86_64_v3.conf @@ -42,12 +42,13 @@ CHOST="x86_64-pc-linux-gnu" #CPPFLAGS="" CFLAGS="-march=x86-64-v3 -mtune=generic -O2 -pipe -fno-plt -fexceptions \ -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security \ - -fstack-clash-protection -fcf-protection" + -fstack-clash-protection -fcf-protection \ + -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer" 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="" +RUSTFLAGS="-Cforce-frame-pointers=yes" #-- Make Flags: change this for DistCC/SMP systems #MAKEFLAGS="-j2" #-- Debugging flags |