From ec2a841c04a666daee7337c74c0a6a96a4ced2d3 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Thu, 14 Mar 2024 14:50:49 +1300 Subject: [PATCH] configure: use -Oz in release mode --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index dcf2cc8..246999f 100755 --- a/configure +++ b/configure @@ -94,7 +94,7 @@ gen_CC () { ## flags used in the compilation step gen_CFLAGS () { if [ -z "$debug" ]; then - cflags="$cflags -O3" + cflags="$cflags -Oz" else cflags="$cflags -O0 -g" fi