From 1f5e3507bac1c039376fb5d1ba5a669765f9201d Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Fri, 2 Oct 2020 10:21:10 -0400 Subject: [PATCH] change nasm output format to elf32 --- kernel/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Makefile b/kernel/Makefile index 83045a2..0b7869e 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -5,7 +5,7 @@ # Assembler Information: NASM=nasm -NASM_FLAGS=-f aout +NASM_FLAGS=-f elf32 # C/C++ Information: CPPFLAGS=-ffreestanding -fno-builtin -nostdlib -nostartfiles -nodefaultlibs -I. -Wall -m32 -fno-pic