diff options
author | Mai <mathew1800@gmail.com> | 2022-12-10 21:43:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 21:43:03 +0100 |
commit | 821da3ed549c76589f28631108759e59a0579061 (patch) | |
tree | bb304b571afaaa0637b201ec95330d360d0d751d | |
parent | Merge pull request #9417 from liamwhite/debug-assert (diff) | |
parent | cmake: enable faster linkers if available (diff) | |
download | yuzu-821da3ed549c76589f28631108759e59a0579061.tar yuzu-821da3ed549c76589f28631108759e59a0579061.tar.gz yuzu-821da3ed549c76589f28631108759e59a0579061.tar.bz2 yuzu-821da3ed549c76589f28631108759e59a0579061.tar.lz yuzu-821da3ed549c76589f28631108759e59a0579061.tar.xz yuzu-821da3ed549c76589f28631108759e59a0579061.tar.zst yuzu-821da3ed549c76589f28631108759e59a0579061.zip |
-rw-r--r-- | CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cd59e7485..16f31b3a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,6 +51,8 @@ option(YUZU_USE_BUNDLED_VCPKG "Use vcpkg for yuzu dependencies" "${MSVC}") option(YUZU_CHECK_SUBMODULES "Check if submodules are present" ON) +CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF) + if (YUZU_USE_BUNDLED_VCPKG) if (YUZU_TESTS) list(APPEND VCPKG_MANIFEST_FEATURES "yuzu-tests") @@ -579,6 +581,21 @@ if (MSVC AND CMAKE_GENERATOR STREQUAL "Ninja") ) endif() +if (YUZU_USE_FASTER_LD AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + # We will assume that if the compiler is GCC, it will attempt to use ld.bfd by default. + # Try to pick a faster linker. + find_program(LLD lld) + find_program(MOLD mold) + + if (MOLD AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "12.1") + message(NOTICE "Selecting mold as linker") + add_link_options("-fuse-ld=mold") + elseif (LLD) + message(NOTICE "Selecting lld as linker") + add_link_options("-fuse-ld=lld") + endif() +endif() + enable_testing() add_subdirectory(externals) add_subdirectory(src) |