This commit is contained in:
flysand7 2023-08-02 14:43:20 +11:00
parent c293fc7813
commit d86ac28629
1 changed files with 0 additions and 14 deletions

14
b
View File

@ -1,14 +0,0 @@
#!/bin/bash
nasm \
-f elf64 \
-o bin/loader-entry.o \
src/loader/loader-entry.asm
clang -static -shared \
-nostdlib \
-ffreestanding \
-I src/include \
-o lib/ld.so \
-Wl,-e,_dlstart \
bin/loader-entry.o src/loader/loader.c