cmake LLD examples

iree-org/iree build_tools/cmake/iree_llvm.cmake :104

find_package(LLD REQUIRED)

root-project/root interpreter/CppInterOp/CMakeLists.txt :168

find_package(LLD ${LLD_VERSION} REQUIRED CONFIG ${lld_search_hints} NO_DEFAULT_PATH)

Pylir/Pylir CMakeLists.txt :34

find_package(LLD REQUIRED)

halide/Halide cmake/FindHalide_LLVM.cmake :69

find_package(
                LLD "${Halide_LLVM_VERSION}" EXACT
                HINTS
                "${LLVM_INSTALL_PREFIX}"
                # Homebrew split the LLVM and LLD packages as of version 19, so
                # having multiple LLVM versions installed leads to the newest
                # LLD being found without this hint.
                "${LLVM_INSTALL_PREFIX}/../lld@${LLVM_VERSION_MAJOR}"
                "${LLVM_DIR}/../lld"
                "${LLVM_DIR}/../lib/cmake/lld"
            )

innative-sdk/innative innative/CMakeLists.txt :12

find_package(LLD REQUIRED)