Fix Mac OS X build.

This commit is contained in:
TSnake41 2020-05-08 16:06:43 +02:00
parent 8ffc943ee8
commit 72a32e09d5
1 changed files with 1 additions and 1 deletions

View File

@ -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