From f71ba91e7ca845bd5f8b7e6dcdef606dd6f02606 Mon Sep 17 00:00:00 2001 From: bol-van Date: Fri, 13 Feb 2026 10:59:03 +0300 Subject: [PATCH] remove no-unwind from makefiles --- nfq2/BSDmakefile | 2 +- nfq2/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nfq2/BSDmakefile b/nfq2/BSDmakefile index e3a2f61..684b0e6 100644 --- a/nfq2/BSDmakefile +++ b/nfq2/BSDmakefile @@ -1,7 +1,7 @@ CC ?= cc PKG_CONFIG ?= pkg-config OPTIMIZE ?= -Oz -MINSIZE ?= -flto=auto -ffunction-sections -fdata-sections -fno-unwind-tables -fno-asynchronous-unwind-tables +MINSIZE ?= -flto=auto -ffunction-sections -fdata-sections CFLAGS += -std=gnu99 -s $(OPTIMIZE) $(MINSIZE) -Wno-address-of-packed-member LDFLAGS += -flto=auto -Wl,--gc-sections LIBS = -lz -lm diff --git a/nfq2/Makefile b/nfq2/Makefile index 8c8e307..6084e43 100644 --- a/nfq2/Makefile +++ b/nfq2/Makefile @@ -1,7 +1,7 @@ CC ?= cc PKG_CONFIG ?= pkg-config OPTIMIZE ?= -Os -MINSIZE ?= -flto=auto -ffunction-sections -fdata-sections -fno-unwind-tables -fno-asynchronous-unwind-tables +MINSIZE ?= -flto=auto -ffunction-sections -fdata-sections CFLAGS += -std=gnu99 $(OPTIMIZE) $(MINSIZE) CFLAGS_LINUX = -Wno-alloc-size-larger-than CFLAGS_SYSTEMD = -DUSE_SYSTEMD