From 436e6a5184900f096347a61d098dcdecb79d2fe8 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Wed, 17 Jan 2024 20:40:10 +1300 Subject: [PATCH] fix build on compilers without -Oz --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4bea55f..de4c59d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ PREFIX = /usr/local MANPREFIX = ${PREFIX}/man CC = cc -CFLAGS = -std=c99 -pedantic -fpic -Oz -Iexternal/lua -Wall -Wextra +CFLAGS = -std=c99 -pedantic -fpic -O2 -Iexternal/lua -Wall -Wextra CPPFLAGS = -D_DEFAULT_SOURCE LDFLAGS = -lm