diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-14 15:29:01 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-14 15:29:01 -0400 |
commit | 14a4f707145e77c4e599a0c9a6b0c5ebce6d770a (patch) | |
tree | 0ac7943f527df058e45f65604a94847066a5f39c | |
parent | 3be168d44e469adcbb3d283999fce4bfe7ffa261 (diff) |
build: Define _KERNEL for system services
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | src/sys/conf/sys.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/conf/sys.mk b/src/sys/conf/sys.mk index f78e9f3..d6f51a9 100644 --- a/src/sys/conf/sys.mk +++ b/src/sys/conf/sys.mk @@ -12,4 +12,4 @@ override MI_CFLAGS = -fexceptions --std=gnu11 -ffreestanding -fno-stack-protecto -Werror=incompatible-pointer-types -Werror=int-to-pointer-cast \ -Werror=return-type -mno-red-zone -mcmodel=kernel \ -D_KERNEL -Wno-pointer-sign -MMD -nostdinc \ - -Wno-format-pedantic -Wno-attributes $(MD_CFLAGS) + -Wno-format-pedantic -Wno-attributes -D_KERNEL $(MD_CFLAGS) |