From 81c97a35e6ad2c096a086c561994d1eaf2415965 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Sat, 26 Jul 2025 13:47:10 +0200 Subject: [PATCH] wip: remove -fomit-frame-pointer while we're at it --- .docker/install-static-libs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/install-static-libs.sh b/.docker/install-static-libs.sh index e35e1b8c..f42a10ce 100644 --- a/.docker/install-static-libs.sh +++ b/.docker/install-static-libs.sh @@ -55,7 +55,7 @@ elif [[ "$PKGS" == ":all" ]]; then PKGS="benchmark,boost,brotli,cpptrace,date,double-conversion,flac,fmt,fuse,fuse3,glog,jemalloc,libarchive,libdwarf,libevent,libucontext,libunwind,libressl,lz4,mimalloc,nlohmann,openssl,parallel-hashmap,range-v3,utfcpp,xxhash,xz,zstd" fi -export COMMON_CFLAGS="-ffunction-sections -fdata-sections -fmerge-all-constants -fomit-frame-pointer" +export COMMON_CFLAGS="-ffunction-sections -fdata-sections -fmerge-all-constants" export COMMON_CXXFLAGS="$COMMON_CFLAGS" export COMMON_LDFLAGS="-fuse-ld=mold -static-libgcc"