removed stray libgcc (#24)

This commit is contained in:
Danny Wray 2020-09-09 21:56:18 +01:00 committed by GitHub
parent ef6ef5865b
commit 9802c8d36e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ BC := $(C_FILES:.c=.bc)
all: limine.bin
limine.bin: libgcc.a $(BC) $(ASM_OBJ)
limine.bin: $(BC) $(ASM_OBJ)
llvm-link $(BC) -o bundle.bc
opt --O$(OPT_LEVEL) bundle.bc -o optimised_bundle.bc
clang --target=i386-elf -O$(OPT_LEVEL) -c optimised_bundle.bc -o optimised_bundle.o