Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tuto-msg: we need std=gnu99 to compile this on travis
authorMartin Quinson <martin.quinson@loria.fr>
Thu, 8 Mar 2018 20:34:47 +0000 (21:34 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Thu, 8 Mar 2018 20:34:47 +0000 (21:34 +0100)
doc/tuto-msg/Makefile

index 01981ad..4eba98f 100644 (file)
@@ -19,8 +19,8 @@ WARNING = -Wshadow -Wcast-align -Waggregate-return -Wmissing-prototypes \
          -Wnested-externs -Wpointer-arith -Wwrite-strings
 WARNING += -Werror # Comment that line to not be in paranoid mode
 
          -Wnested-externs -Wpointer-arith -Wwrite-strings
 WARNING += -Werror # Comment that line to not be in paranoid mode
 
-# CFLAGS = -g -O0 $(WARNINGS) # Use this line to make debugging easier
-CFLAGS = -g -O2 $(WARNINGS) # Use this line to get better performance
+# CFLAGS = -std=gnu99 -g -O0 $(WARNINGS) # Use this line to make debugging easier
+CFLAGS = -std=gnu99 -g -O2 $(WARNINGS) # Use this line to get better performance
 
 # No change should be mandated past that line
 #############################################
 
 # No change should be mandated past that line
 #############################################