diff options
author | garakmon <thomastaps194@comcast.net> | 2018-06-16 18:49:27 -0400 |
---|---|---|
committer | garakmon <thomastaps194@comcast.net> | 2018-06-16 18:49:27 -0400 |
commit | 13ed20c6e3cc2a5029d33df39cffbcc219fbacf1 (patch) | |
tree | e7397229faf97e5655d483cbb8739b6d14b538fa /tools/gbagfx | |
parent | 46f9b83fe54b2c0b2a81c60de143ba0abcb75ec9 (diff) |
compiler fixes
The compiler flag -s is not necessary and causes build failure on some
systems (macOS, clang compilers) due to it being deprecated.
Additionally, on those same systems, tools/aif2pcm/main.c failed to
compile due to an overly cautious compiler not liking some struct
declarations.
These changes afaik do not affect other builds.
Diffstat (limited to 'tools/gbagfx')
-rw-r--r-- | tools/gbagfx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gbagfx/Makefile b/tools/gbagfx/Makefile index d791dabb5..6f11b1b3f 100644 --- a/tools/gbagfx/Makefile +++ b/tools/gbagfx/Makefile @@ -1,6 +1,6 @@ CC = gcc -CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -s -DPNG_SKIP_SETJMP_CHECK +CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -DPNG_SKIP_SETJMP_CHECK LIBS = -lpng -lz |