no more crash on day3

This commit is contained in:
2025-12-03 17:33:25 -06:00
parent 26dd9df8c7
commit 137fd441e1
2 changed files with 5 additions and 8 deletions

View File

@@ -2,8 +2,8 @@ FILES = $(wildcard ./*)
SRCS = $(filter %.c,$(FILES))
BINS = $(SRCS:%.c=%.elf)
CFLAGS = -Wall -Werror -pedantic -D_GNU_SOURCE -std=gnu2y -O3 -g -Wno-unused\
-nostartfiles -static -Ttext=C475000
CFLAGS = -Wall -Werror -pedantic -Wno-unused -D_GNU_SOURCE -std=gnu2y\
-O3 -g -Ttext=C475000 -static -nostartfiles -fno-stack-protector -march=native
all: $(BINS)