From ef21b9ca649326d6da87c943aa15a34cef9ae9f6 Mon Sep 17 00:00:00 2001 From: Erik Strand <erik.strand@cba.mit.edu> Date: Sun, 25 Nov 2018 20:29:08 -0500 Subject: [PATCH] Use std=c++11 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c3bb10..2f068dd 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # This Makefile compiles and flashes four different programs: -CPPFLAGS=-Wall -O3 -pthread +CPPFLAGS=-Wall -O3 -pthread -std=c++11 %: %.cpp g++ $(CPPFLAGS) -o build/$@ $< -- GitLab