summaryrefslogtreecommitdiff
path: root/Base
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-11-05 10:02:57 +0100
committerAndreas Kling <kling@serenityos.org>2020-11-05 10:02:57 +0100
commiteed78ffa5ab1200df90b9bdb0369501a8f471138 (patch)
tree5b86fd0d1f2c1177387e91385f65d9acfc328e80 /Base
parent575c4833104e5146885ce0f8488621c81b4fa480 (diff)
downloadserenity-eed78ffa5ab1200df90b9bdb0369501a8f471138.zip
Base: Tweak CXXFLAGS for the "little" test projects
Let's build with -std=c++2a since we're C++20 nowadays. :^)
Diffstat (limited to 'Base')
-rw-r--r--Base/home/anon/Source/little/Makefile2
1 files changed, 1 insertions, 1 deletions
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)