From f58f8a22ce19859b90c7475004e3b2ebe3759c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Ravn=20Andersen?= Date: Sun, 3 Dec 2023 18:47:53 +0100 Subject: [PATCH] Enabled compilation optimization for Mac OS --- RunCPM/Makefile.macosx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RunCPM/Makefile.macosx b/RunCPM/Makefile.macosx index 8565c87..5b53b6a 100644 --- a/RunCPM/Makefile.macosx +++ b/RunCPM/Makefile.macosx @@ -9,9 +9,9 @@ CC = gcc #CC = gcc -DDEBUG=1 -DDEBUGLOG=1 # Flags to pass to the compiler - add "-g" to include debug information -CFLAGS = -Wall -O0 -fPIC -Wno-unused-variable -DHASLUA +CFLAGS = -Wall -O3 -fPIC -Wno-unused-variable -DHASLUA #uncomment next line to include debug symbols -#CFLAGS+=-ggdb +CFLAGS+=-ggdb # Flags to pass to the linker LDFLAGS = -lm -ldl