Lines Matching +full:- +full:dllvm_enable_projects
1 Mach-O LLD Port
4 LLD is a linker from the LLVM project that is a drop-in replacement
7 will describe the Mach-O port.
10 --------
12 - LLD is a drop-in replacement for Apple's Mach-O linker, ld64, that accepts the
15 - LLD is very fast. When you link a large program on a multicore
20 --------
22 LLD is available as a pre-built binary by going to the `latest release <https://github.com/llvm/llv…
23 downloading the appropriate bundle (``clang+llvm-<version>-<your architecture>-<your platform>.tar.…
29 -----
32 check out the entire LLVM projects/sub-projects from a git mirror and
35 .. code-block:: console
37 $ git clone https://github.com/llvm/llvm-project llvm-project
40 $ cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS='lld' ../llvm-project/llvm
41 $ ninja check-lld-macho
48 ---------
50 LLD can be used by adding ``-fuse-ld=/path/to/ld64.lld`` to the linker flags.
52 settings. For Bazel, this can be done with ``--linkopt`` or with
57 :doc:`ld64-vs-lld` has more info on the differences between the two linkers.
62 ld64-vs-lld