mirror of
https://github.com/codeplea/genann.git
synced 2025-10-03 08:42:44 +00:00
Changed build to work with both gcc and clang.
This commit is contained in:
@@ -1,2 +1,7 @@
|
||||
language: c
|
||||
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
|
||||
script: make
|
||||
|
3
Makefile
3
Makefile
@@ -1,5 +1,4 @@
|
||||
CC = gcc
|
||||
CCFLAGS = -ansi -Wall -Wshadow -O2 -g
|
||||
CCFLAGS = -Wall -Wshadow -O2 -g
|
||||
LFLAGS = -lm
|
||||
|
||||
|
||||
|
@@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user