summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-28 11:09:49 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-28 11:09:49 -0400
commitf0a98cfb8f35f0c053b951387065b2ce07f41dfa (patch)
tree474306562a3b029e1de404dd1bcfc7fc1fc7ef1a
parentmove context save area to pcb not in stack (diff)
downloadcomus-f0a98cfb8f35f0c053b951387065b2ce07f41dfa.tar.gz
comus-f0a98cfb8f35f0c053b951387065b2ce07f41dfa.tar.bz2
comus-f0a98cfb8f35f0c053b951387065b2ce07f41dfa.zip
fix red zone
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 302dbfe..5dc3e03 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ CFLAGS += -std=c11
CFLAGS += -Wall -Wextra -pedantic
CFLAGS += -fno-pie -fno-stack-protector
CFLAGS += -fno-omit-frame-pointer -ffreestanding
-CFLAGS += -fno-builtin
+CFLAGS += -nostdlib -fno-builtin -mno-red-zone
CFLAGS += -D DEBUG -g
CFLAGS += $(CPPFLAGS)