From 66641460af12eea879531660908e389ba5fccd60 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Tue, 5 Apr 2022 10:30:00 +0200 Subject: [PATCH] Typo fix --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 055a1fd..7111407 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ # Compiler/assembler settings CC = gcc -CFLAGS = -fno-pie -m32 -Os -frfeestanding +CFLAGS = -fno-pie -m32 -Os -ffreestanding AA = nasm AFLAGS = LD = gcc -LDFLAGS = -Wl,--oformat=binary -frfeestanding -nostdlib -shared -Ttext 0x1000 -m32 +LDFLAGS = -Wl,--oformat=binary -ffreestanding -nostdlib -shared -Ttext 0x1000 -m32 RS = rustc RFLAGS = --emit=obj --target i686-unknown-linux-gnu # WARN: target might not exist on your machine. Just swap it out to whatever 32bit target that you have.