From 20fe40005ecc6800e1009cfbc55558856d63e69e Mon Sep 17 00:00:00 2001 From: anon Date: Wed, 30 Oct 2024 15:51:24 +0100 Subject: [PATCH] explicitly specify C++ version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6e2145a..195f585 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ ifeq (${DEBUG}, 1) CXXFLAGS += -DDEBUG -O0 -ggdb -fno-inline WRAP := valgrind --track-origins=yes --leak-check=full --show-leak-kinds=all else - CXXFLAGS += -O3 -fno-stack-protector -fno-exceptions -fno-rtti + CXXFLAGS += -std=c++17 -O3 -fno-stack-protector -fno-exceptions -fno-rtti endif OUT := contra