From e59ca8420eab18f1e536e951c50004e5bb55e86e Mon Sep 17 00:00:00 2001 From: orignal Date: Fri, 6 Jan 2023 18:20:26 -0500 Subject: [PATCH] temporary change back to C++17 --- Makefile.linux | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.linux b/Makefile.linux index a02419b7..9a3fdda3 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -24,7 +24,8 @@ else ifeq ($(shell expr match ${CXXVER} "[7-9]"),1) # gcc 7 - 9 NEEDED_CXXFLAGS += -std=c++17 LDLIBS = -latomic else ifeq ($(shell expr match ${CXXVER} "1[0-9]"),2) # gcc 10 - 19 - NEEDED_CXXFLAGS += -std=c++20 +# NEEDED_CXXFLAGS += -std=c++20 + NEEDED_CXXFLAGS += -std=c++17 LDLIBS = -latomic else # not supported $(error Compiler too old)