aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-03-28 01:15:51 -0400
committerIan Moffett <ian@osmora.org>2025-03-28 01:15:51 -0400
commitbb7b317966f1110d2dbd49cbf53e53832ab3821b (patch)
treebfc17ea76348550a84d529f1e9ff0e595cfec9e1 /Makefile.in
parent1ebf78d4bba1b50415677a25ea1e1a3a058a2b73 (diff)
sys: Make proper sys/types.h + add clang nostdincexpt
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 7783676..edf7193 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -20,10 +20,10 @@ override KERNEL_DEFINES = $ -DHYRA_VERSION="\"$(HYRA_VERSION)\""\
override TOOLCHAIN = @TOOLCHAIN@
ifeq ($(TOOLCHAIN), clang)
ifeq ($(ARCH), amd64)
- override CC = clang -target x86_64-none-elf
+ override CC = clang -target x86_64-none-elf -ffreestanding -nostdlib
override LD = ld.lld
else
- override CC = clang -target $(ARCH)-none-elf
+ override CC = clang -target $(ARCH)-none-elf -ffreestanding -nostdlib
override LD = ld.lld
endif
else ifeq ($(TOOLCHAIN), gcc)