From cdaa72e664726530232fc55b479f7f2a039209a9 Mon Sep 17 00:00:00 2001 From: orignal Date: Mon, 22 Sep 2014 07:34:57 -0400 Subject: [PATCH] c++11 is not recognized by gcc 4.6. rolled back to c++0x --- Makefile.linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.linux b/Makefile.linux index e7d33048..d6149a54 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -1,5 +1,5 @@ CC = g++ -CFLAGS = -g -Wall -std=c++11 +CFLAGS = -g -Wall -std=c++0x include filelist.mk INCFLAGS = LDFLAGS = -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread