diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-28 11:09:49 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-28 11:09:49 -0400 |
commit | f0a98cfb8f35f0c053b951387065b2ce07f41dfa (patch) | |
tree | 474306562a3b029e1de404dd1bcfc7fc1fc7ef1a | |
parent | move context save area to pcb not in stack (diff) | |
download | comus-f0a98cfb8f35f0c053b951387065b2ce07f41dfa.tar.gz comus-f0a98cfb8f35f0c053b951387065b2ce07f41dfa.tar.bz2 comus-f0a98cfb8f35f0c053b951387065b2ce07f41dfa.zip |
fix red zone
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |