summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-31 02:09:11 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-31 02:09:11 +0100
commitbb90c8ecabd42d44094d1ce783ea8a9e346695bc (patch)
tree56074025556fb38c724cf897b195f514ed1636a0 /Userland/Makefile
parent511ed4c4de349dd62dc302c9d46603aaeaf19f3d (diff)
downloadserenity-bb90c8ecabd42d44094d1ce783ea8a9e346695bc.zip
A bunch of LibC boilerplate stuff added while trying to get figlet to build.
Diffstat (limited to 'Userland/Makefile')
-rw-r--r--Userland/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 08ee253c74..21b0b9ff91 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -35,12 +35,12 @@ APPS = \
kill
ARCH_FLAGS =
-STANDARD_FLAGS = -std=c++17 -nostdinc++ -nostdlib
+STANDARD_FLAGS = -std=c++17 -nostdinc++ -nostdlib -nostdinc
USERLAND_FLAGS = -ffreestanding -fno-stack-protector -fno-ident
WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings
FLAVOR_FLAGS = -march=i386 -mregparm=3 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic
OPTIMIZATION_FLAGS = -Os -fno-asynchronous-unwind-tables
-INCLUDE_FLAGS = -I.. -I.
+INCLUDE_FLAGS = -I.. -I. -I../LibC
DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND