From 967580d298f592cc92dcee839cbbb69f469dc713 Mon Sep 17 00:00:00 2001 From: flysand7 Date: Sat, 26 Aug 2023 14:01:04 +1100 Subject: [PATCH] remove commands.sh temporary file --- commands.sh | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 commands.sh diff --git a/commands.sh b/commands.sh deleted file mode 100644 index 59d0aad..0000000 --- a/commands.sh +++ /dev/null @@ -1,10 +0,0 @@ -==> Compiling lib/ld-cia.so - $ nasm -f "elf64" "loader/loader-entry.asm" -o "bin/loader-entry.o" - $ clang -nostdlib -fno-stack-protector -g -O0 -fpic -D _DEBUG -I "include" -I "include/linux" -shared -nostdlib -ffreestanding -fno-stack-protector -Wl,-e,_dlstart -Wl,--sort-section,alignment -Wl,--sort-common -Wl,--gc-sections -Wl,--hash-style=both -Wl,--no-undefined -Wl,--exclude-libs=ALL "bin/loader-entry.o" "loader/loader-self-reloc.c" "loader/loader.c" -o "lib/ld-cia.so" -==> Compiling crt.lib - $ clang -nostdlib -fno-stack-protector -g -O0 -fpic -D _DEBUG -I "include" -I "include/linux" -c "os/linux/crt-ctors.c" -o "bin/crt-ctors.o" - $ llvm-ar -rcs "lib/crt.lib" "bin/crt-ctors.o" -==> Compiling cia.lib - $ clang -nostdlib -fno-stack-protector -g -O0 -fpic -D _DEBUG -I "include" -I "include/linux" -c "include/cia.c" -o "bin/cia.o" - $ llvm-ar -rcs "lib/cia.lib" "bin/cia.o" - $ clang -nostdlib -fno-stack-protector -g -O0 -fpic -D _DEBUG -I "include" -I "include/linux" -pie -Wl,-dynamic-linker,lib/ld-cia.so -fno-stack-protector "tests/hello.c" "lib/crt.lib" "lib/cia.lib" -o "a"