diff options
author | Ian Moffett <ian@osmora.org> | 2025-03-28 01:15:51 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-03-28 01:15:51 -0400 |
commit | bb7b317966f1110d2dbd49cbf53e53832ab3821b (patch) | |
tree | bfc17ea76348550a84d529f1e9ff0e595cfec9e1 /Makefile.in | |
parent | 1ebf78d4bba1b50415677a25ea1e1a3a058a2b73 (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.in | 4 |
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) |