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/zig_llvm.cpp | |
| 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/zig_llvm.cpp')
| -rw-r--r-- | src/zig_llvm.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/zig_llvm.cpp b/src/zig_llvm.cpp index 8c54af4bb4..6d40f4089a 100644 --- a/src/zig_llvm.cpp +++ b/src/zig_llvm.cpp @@ -1187,11 +1187,6 @@ int ZigLLDLinkELF(int argc, const char **argv, bool can_exit_early) { return lld::elf::link(args, can_exit_early, llvm::outs(), llvm::errs()); } -int ZigLLDLinkMachO(int argc, const char **argv, bool can_exit_early) { - std::vector<const char *> args(argv, argv + argc); - return lld::mach_o::link(args, can_exit_early, llvm::outs(), llvm::errs()); -} - int ZigLLDLinkWasm(int argc, const char **argv, bool can_exit_early) { std::vector<const char *> args(argv, argv + argc); return lld::wasm::link(args, can_exit_early, llvm::outs(), llvm::errs()); |
