diff --git a/b b/b deleted file mode 100755 index f097f07..0000000 --- a/b +++ /dev/null @@ -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