From 182c5d8aad610eaf6f9c77f58631d4e5ba0a0fe1 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 9 Jul 2019 17:28:26 +0200 Subject: [PATCH] Kernel: Pick up standard includes from ../Toolchain, not ../Root --- Kernel/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/Makefile b/Kernel/Makefile index dc65c572b2..ef443b1422 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -98,8 +98,8 @@ OBJS = $(CXX_OBJS) Boot/boot.ao KERNEL = kernel CXXFLAGS += -ffreestanding -mregparm=3 -mno-80387 -mno-mmx -mno-sse -mno-sse2 CXXFLAGS += -nostdlib -nostdinc -nostdinc++ -CXXFLAGS += -I../Root/usr/local/include/c++/8.3.0/ -CXXFLAGS += -I../Root/usr/local/include/c++/8.3.0/i686-pc-serenity/ +CXXFLAGS += -I../Toolchain/Local/i686-pc-serenity/include/c++/8.3.0/ +CXXFLAGS += -I../Toolchain/Local/i686-pc-serenity/include/c++/8.3.0/i686-pc-serenity/ DEFINES += -DKERNEL LDFLAGS += -Ttext 0x10000 -Wl,-T linker.ld -nostdlib