From 72a32e09d58dc4424df66977fe28a85b306bb903 Mon Sep 17 00:00:00 2001 From: TSnake41 Date: Fri, 8 May 2020 16:06:43 +0200 Subject: [PATCH] Fix Mac OS X build. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index b8b8e16..c0fa370 100644 --- a/makefile +++ b/makefile @@ -12,7 +12,7 @@ MODULES := raymath rlgl easings gestures physac raygui ifeq ($(OS),Windows_NT) LDFLAGS += -lopengl32 -lgdi32 -lwinmm -static else ifeq ($(shell uname),Darwin) - LDFLAGS += -framework CoreVideo -framework IOKit -framework Cocoa -framework GLUT -framework OpenGL -Wl,"-pagezero_size 10000 -image_base 100000000" + LDFLAGS += -framework CoreVideo -framework IOKit -framework Cocoa -framework GLUT -framework OpenGL -Wl,-pagezero_size,10000,-image_base,100000000 else LDFLAGS += -ldl -lX11 -lpthread endif