From 4243c9eda088b907d0a3a2760c5dc2ff1820b30a Mon Sep 17 00:00:00 2001 From: heck Date: Wed, 18 Dec 2019 17:28:12 +0100 Subject: [PATCH] C++11 is the standard to be used for all adapters (acc. to Volker) --- Makefile.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.conf b/Makefile.conf index e9659d7..e26cb75 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -21,9 +21,9 @@ LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter ######### C++ ######### ifeq ($(BUILD_FOR),Linux) - CXX=g++ -std=c++14 + CXX=g++ -std=c++11 else ifeq ($(BUILD_FOR),Darwin) - CXX=clang -std=c++14 + CXX=clang -std=c++11 endif ifeq ($(BUILD_FOR),Linux)