Changed build to work with both gcc and clang.

This commit is contained in:
Lewis Van Winkle 2016-03-08 12:58:02 -06:00
parent b1fcdf7f69
commit 064703e332
3 changed files with 7 additions and 3 deletions

View File

@ -1,2 +1,7 @@
language: c
compiler:
- clang
- gcc
script: make

View File

@ -1,5 +1,4 @@
CC = gcc
CCFLAGS = -ansi -Wall -Wshadow -O2 -g
CCFLAGS = -Wall -Wshadow -O2 -g
LFLAGS = -lm

View File

@ -20,7 +20,7 @@ int main(int argc, char *argv[])
fclose(saved);
if (!ann) {
printf("Error loading ANN from file.", save_name);
printf("Error loading ANN from file: %s.", save_name);
exit(1);
}