From efd2da8185d06ef3a61824f8519072aa8ef8f436 Mon Sep 17 00:00:00 2001 From: Tercio de Melo Date: Tue, 3 May 2016 21:59:40 -0300 Subject: [PATCH] Setting C++11 standard flag to C++Makefile --- src/com/dogcows/resources/C++Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/dogcows/resources/C++Makefile b/src/com/dogcows/resources/C++Makefile index 79332f1..3be8b06 100644 --- a/src/com/dogcows/resources/C++Makefile +++ b/src/com/dogcows/resources/C++Makefile @@ -2,7 +2,7 @@ # Set the command for your C++ compiler, and specify any compiler flags you # want to use (e.g. -g -Werror). CXX = g++ -CXXFLAGS = -ggdb -Wall +CXXFLAGS = -std=c++11 -ggdb -Wall # The driver outputs TAP (Test Anything Protocol), so it can also be used with # any TAP test harness (e.g. prove). Set the path to your test harness here,