From d86ac28629f348c9517cf193c29519033c2ad5a4 Mon Sep 17 00:00:00 2001 From: flysand7 Date: Wed, 2 Aug 2023 14:43:20 +1100 Subject: [PATCH] oops --- b | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 b 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