From: Martin Quinson Date: Thu, 8 Mar 2018 20:34:47 +0000 (+0100) Subject: tuto-msg: we need std=gnu99 to compile this on travis X-Git-Tag: v3.19~129 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/91037750a74d216030aed011eed2a1d5608b2362 tuto-msg: we need std=gnu99 to compile this on travis --- diff --git a/doc/tuto-msg/Makefile b/doc/tuto-msg/Makefile index 01981ad10a..4eba98f210 100644 --- a/doc/tuto-msg/Makefile +++ b/doc/tuto-msg/Makefile @@ -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 #############################################