diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-26 13:36:26 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-26 13:36:26 +0100 |
commit | 4a5b474f1d514c3e031be9a2793a6a9303e92f8f (patch) | |
tree | 5a038d013ae4b3fbe39d171a58e96e344a5e3f39 | |
parent | 3f29a12d9023de3bf27fa7606f07285bcb5d1732 (diff) | |
download | serenity-4a5b474f1d514c3e031be9a2793a6a9303e92f8f.zip |
LibC: Install crt0.o into /usr/lib
-rwxr-xr-x | LibC/install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
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/ |