From bb21898c336e512f9af61e0bf8ff531ebd39488f Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Tue, 31 Dec 2019 14:57:46 +0900 Subject: [PATCH] Include stdio.c in klibc compilation --- kernel/klibc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/klibc/Makefile b/kernel/klibc/Makefile index f2bb415..c18bc92 100644 --- a/kernel/klibc/Makefile +++ b/kernel/klibc/Makefile @@ -1,5 +1,5 @@ OUTPUT = klibc.a -OBJECTS = string.o spinlock.o mutex.o posixcall.o coraxcall.o heap.o +OBJECTS = string.o spinlock.o mutex.o posixcall.o coraxcall.o heap.o stdio.o PHONY = clean INCLUDES = -I../include -I../../include -I../.. CFLAGS = -m32 -Wall -nostdlib -nodefaultlibs -nostartfiles -ffreestanding $(INCLUDES) -- 2.47.3