diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2021-06-29 18:24:00 +0200 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2021-06-29 23:38:19 +0200 |
| commit | 0e15205521b9a8c95db3c1714dffe3be1df5cda1 (patch) | |
| tree | ad3ee1bcad5a109219ba7e30e1fbd7dc206bc3a6 /src/codegen | |
| parent | 8211cef77c15d37d3ec9b92943476c7755ef7efc (diff) | |
| download | zig-0e15205521b9a8c95db3c1714dffe3be1df5cda1.tar.gz zig-0e15205521b9a8c95db3c1714dffe3be1df5cda1.zip | |
Remove mention of lldMachO from the project
including:
* finding lldMachO in CMake config
* punting `ld64.lld` to LLD linker
* providing bindings to LLD linker
Diffstat (limited to 'src/codegen')
| -rw-r--r-- | src/codegen/llvm/bindings.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/codegen/llvm/bindings.zig b/src/codegen/llvm/bindings.zig index 364b059a87..f3a1a72f3d 100644 --- a/src/codegen/llvm/bindings.zig +++ b/src/codegen/llvm/bindings.zig @@ -496,12 +496,10 @@ fn LLVMInitializeAllAsmParsers() callconv(.C) void { extern fn ZigLLDLinkCOFF(argc: c_int, argv: [*:null]const ?[*:0]const u8, can_exit_early: bool) c_int; extern fn ZigLLDLinkELF(argc: c_int, argv: [*:null]const ?[*:0]const u8, can_exit_early: bool) c_int; -extern fn ZigLLDLinkMachO(argc: c_int, argv: [*:null]const ?[*:0]const u8, can_exit_early: bool) c_int; extern fn ZigLLDLinkWasm(argc: c_int, argv: [*:null]const ?[*:0]const u8, can_exit_early: bool) c_int; pub const LinkCOFF = ZigLLDLinkCOFF; pub const LinkELF = ZigLLDLinkELF; -pub const LinkMachO = ZigLLDLinkMachO; pub const LinkWasm = ZigLLDLinkWasm; pub const ObjectFormatType = enum(c_int) { |
