diff options
author | Andreas Kling <kling@serenityos.org> | 2020-11-05 10:02:57 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-05 10:02:57 +0100 |
commit | eed78ffa5ab1200df90b9bdb0369501a8f471138 (patch) | |
tree | 5b86fd0d1f2c1177387e91385f65d9acfc328e80 /Base | |
parent | 575c4833104e5146885ce0f8488621c81b4fa480 (diff) | |
download | serenity-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/Makefile | 2 |
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) |