use default gcc/clang on Travis CI for faster builds

This commit is contained in:
Martins Mozeiko
2017-10-31 22:00:59 -07:00
parent 4176dd1e55
commit 9e066c427b
3 changed files with 6 additions and 21 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ SRC=${wildcard pkg2zip*.c} puff.c
OBJ=${SRC:.c=.o}
DEP=${SRC:.c=.d}
CFLAGS=-pipe -fvisibility=hidden -Wall -Wextra -Werror -DNDEBUG -O2
CFLAGS=-std=c99 -pipe -fvisibility=hidden -Wall -Wextra -Werror -DNDEBUG -D_GNU_SOURCE -O2
LDFLAGS=-s
.PHONY: all clean