Added compiler flag...

...to avoid issue on Arch Linux
This commit is contained in:
raysan5 2017-08-24 18:27:31 +02:00
parent f78747130c
commit 93a4b5e851

View File

@ -103,7 +103,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
CFLAGS = -O2 -s -Wall -std=c99
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS = -O2 -s -Wall -std=c99 -D_DEFAULT_SOURCE
CFLAGS = -O2 -s -Wall -std=c99 -no-pie -D_DEFAULT_SOURCE
endif
ifeq ($(PLATFORM_OS),OSX)
CFLAGS = -O2 -s -Wall -std=c99