summaryrefslogtreecommitdiff
path: root/Kernel/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-28 20:20:19 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-28 20:21:23 +0200
commit4c285f9e1a76aee5de16deb256f939823f554bfc (patch)
tree8ad0e1a750944ce779f3af36757942094d2ae783 /Kernel/Makefile
parent933cd3848f3f791e57fc788bac67dc92957e90e0 (diff)
downloadserenity-4c285f9e1a76aee5de16deb256f939823f554bfc.zip
AK: Add Vector(std::initializer_list<T>) constructor.
This allows us to construct a Vector from an initializer list like so: Vector<Object> objects = { object1, object2, object3 };
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r--Kernel/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile
index 8579d3bf38..cd90d8c48a 100644
--- a/Kernel/Makefile
+++ b/Kernel/Makefile
@@ -92,7 +92,7 @@ OBJS = $(CXX_OBJS) Boot/boot.ao
KERNEL = kernel
CXXFLAGS += -ffreestanding -mregparm=3 -mno-80387 -mno-mmx -mno-sse -mno-sse2
-CXXFLAGS += -nostdinc++ -nostdlib -nostdinc
+CXXFLAGS += -nostdlib
DEFINES += -DKERNEL
LDFLAGS += -Ttext 0x10000 -Wl,-T linker.ld -nostdlib