From fea167dab379e698060e7f3f509c9bf5b09d25dd Mon Sep 17 00:00:00 2001 From: babbleberry Date: Fri, 23 Feb 2024 22:21:52 +0000 Subject: [PATCH] Added nostartfiles to Makefile.gcc in part11 --- part11-breakout-smp/Makefile.gcc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/part11-breakout-smp/Makefile.gcc b/part11-breakout-smp/Makefile.gcc index 9c0526f..023aa68 100644 --- a/part11-breakout-smp/Makefile.gcc +++ b/part11-breakout-smp/Makefile.gcc @@ -1,9 +1,8 @@ CFILES = $(wildcard *.c lib/*.c) OFILES = $(CFILES:.c=.o) -GCCFLAGS = -Wall -O2 -ffreestanding -nostdinc -nostdlib +GCCFLAGS = -Wall -O2 -ffreestanding -nostdinc -nostdlib -nostartfiles GCCPATH = ../../gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf/bin - all: clean kernel8.img boot/boot.o: boot/boot.S