From e0c6377779c0357a4756e85a0d0f22cde0c7667a Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Thu, 14 Mar 2024 14:53:17 +1300 Subject: [PATCH] configure: revert -Oz back to -O3 Apparently OpenBSD's gcc doesn't support -Oz... --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 246999f..dcf2cc8 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 -Oz" + cflags="$cflags -O3" else cflags="$cflags -O0 -g" fi