diff options
| author | Joshua Reisenauer <kd7tck@msn.com> | 2016-06-01 20:17:39 -0700 |
|---|---|---|
| committer | Joshua Reisenauer <kd7tck@msn.com> | 2016-06-01 20:17:39 -0700 |
| commit | ae6adb173b0a89abd5185436029691ae33c1a727 (patch) | |
| tree | 1e5932f1df42368983844ca16f2c2ddba9cd4b3d /src/Makefile | |
| parent | 90e1ed2b5e54a9b6c69be3dd2b71d1e4f3632c33 (diff) | |
| parent | 17878550b1e2dde44fcd1e668c92ca2d96680a28 (diff) | |
| download | raylib-ae6adb173b0a89abd5185436029691ae33c1a727.tar.gz raylib-ae6adb173b0a89abd5185436029691ae33c1a727.zip | |
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile index 12f4609b..244675e2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -69,12 +69,13 @@ else endif # define compiler flags: -# -O1 defines optimization level -# -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, faster) -CFLAGS = -O1 -Wall -std=gnu99 -fgnu89-inline +# -O1 defines optimization level +# -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, faster) +# -Wno-missing-braces ignore invalid warning (GCC bug 53119) +CFLAGS = -O1 -Wall -std=gnu99 -fgnu89-inline -Wno-missing-braces #CFLAGSEXTRA = -Wextra -Wmissing-prototypes -Wstrict-prototypes |
