From 4a5b474f1d514c3e031be9a2793a6a9303e92f8f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 26 Feb 2019 13:36:26 +0100 Subject: [PATCH] LibC: Install crt0.o into /usr/lib --- LibC/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/LibC/install.sh b/LibC/install.sh index 32da873603..88b4fbcea3 100755 --- a/LibC/install.sh +++ b/LibC/install.sh @@ -5,3 +5,4 @@ mkdir -p ../Root/usr/lib/ cp *.h ../Root/usr/include/ cp sys/*.h ../Root/usr/include/sys/ cp libc.a ../Root/usr/lib/ +cp crt0.o ../Root/usr/lib/