aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2018-02-21 23:28:34 +0100
committerRay <raysan5@gmail.com>2018-02-21 23:28:34 +0100
commit97bf2706c497f90ea4e3ead4e69819bc7a1f6083 (patch)
tree8a47809fe36ba9127da034ea3403fa6d1afcccc7 /src
parent788049df093a0e3df0c2d5aef19502cca2de3462 (diff)
downloadraylib-97bf2706c497f90ea4e3ead4e69819bc7a1f6083.tar.gz
raylib-97bf2706c497f90ea4e3ead4e69819bc7a1f6083.zip
Removed flag -fgnu89-inline
Diffstat (limited to 'src')
-rw-r--r--src/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index f8f9635b..f7494912 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -270,11 +270,10 @@ endif
# -Wall turns on most, but not all, compiler warnings
# -std=c99 defines C language mode (standard C from 1999 revision)
# -std=gnu99 defines C language mode (GNU C from 1999 revision)
-# -fgnu89-inline declaring inline functions support (GCC optimized)
# -Wno-missing-braces ignore invalid warning (GCC bug 53119)
# -D_DEFAULT_SOURCE use with -std=c99 on Linux and PLATFORM_WEB, required for timespec
# -Werror=pointer-arith catch unportable code that does direct arithmetic on void pointers
-CFLAGS += -O1 -Wall -std=c99 -D_DEFAULT_SOURCE -fgnu89-inline -Wno-missing-braces -Werror=pointer-arith
+CFLAGS += -O1 -Wall -std=c99 -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith
ifeq ($(RAYLIB_BUILD_MODE), DEBUG)
CFLAGS += -g