Compare commits

..

1 Commits

Author SHA1 Message Date
e9b3dea942 Rewrite LLVM bindings
All checks were successful
CI / ci (Release, ubuntu-latest) (pull_request) Successful in 28s
CI / ci (Release-assertions, ubuntu-latest) (pull_request) Successful in 34s
CI / ci (Release, ubuntu-latest) (push) Successful in 28s
CI / ci (Release-assertions, ubuntu-latest) (push) Successful in 34s
CI / ci (Debug, ubuntu-latest) (push) Successful in 8m35s
CI / release (ubuntu-latest) (push) Successful in 7s
2025-06-25 19:48:40 -06:00

View File

@ -343,9 +343,22 @@ fn String compile_file(Arena* arena, Compile options)
library_buffer[library_count] = string_literal("lldCommon");
library_count += 1;
library_buffer[library_count] = string_literal("lldCOFF");
library_count += 1;
library_buffer[library_count] = string_literal("lldELF");
library_count += 1;
library_buffer[library_count] = string_literal("lldMachO");
library_count += 1;
library_buffer[library_count] = string_literal("lldMinGW");
library_count += 1;
library_buffer[library_count] = string_literal("lldWasm");
library_count += 1;
library_buffer[library_count] = string_literal("llvm_bindings");
library_count += 1;