From eed78ffa5ab1200df90b9bdb0369501a8f471138 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 5 Nov 2020 10:02:57 +0100 Subject: [PATCH] Base: Tweak CXXFLAGS for the "little" test projects Let's build with -std=c++2a since we're C++20 nowadays. :^) --- Base/home/anon/Source/little/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Base/home/anon/Source/little/Makefile b/Base/home/anon/Source/little/Makefile index 53de0e50e3..7d9a032450 100644 --- a/Base/home/anon/Source/little/Makefile +++ b/Base/home/anon/Source/little/Makefile @@ -1,6 +1,6 @@ PROGRAM = little OBJS = main.o other.o -CXXFLAGS = -g +CXXFLAGS = -g -Os -std=c++2a all: $(PROGRAM)