]> AND Public Git Repository - simgrid.git/blobdiff - doc/tuto-msg/Makefile
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tuto-msg: we need std=gnu99 to compile this on travis
[simgrid.git] / doc / tuto-msg / Makefile
index 01981ad10a3fc16a475ead255591644f01735b56..4eba98f210b01f82e14cabab88a29cf4b6087cd3 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
 
-# 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
 #############################################