From 1b57f838f19e2a8c1e1a3bd903b2a70c730ab08f Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 5 Feb 2024 16:47:35 +0000 Subject: [PATCH] make.sh: Compile with minimal debug information In IPFire 2, we don't make any use out of the debug information. Therefore we can tell the compiler to generate as minimal debug information as possible in order to have a faster compilation process. Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 8b4224646..ab7e0911f 100755 --- a/make.sh +++ b/make.sh @@ -184,7 +184,7 @@ configure_build() { # Enables hardening HARDENING_CFLAGS="-Wp,-U_FORTIFY_SOURCE -Wp,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -fstack-clash-protection" - CFLAGS="-O2 -pipe -Wall -fexceptions -fPIC ${CFLAGS_ARCH}" + CFLAGS="-O2 -g0 -pipe -Wall -fexceptions -fPIC ${CFLAGS_ARCH}" CXXFLAGS="${CFLAGS}" RUSTFLAGS="-Copt-level=3 -Clink-arg=-Wl,-z,relro,-z,now -Ccodegen-units=1 --cap-lints=warn ${RUSTFLAGS_ARCH}" -- 2.39.5