diff --git a/CMakeLists.txt b/CMakeLists.txt index de6ca0e..fbae81a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,12 @@ if (SHARED) endif (SHARED) if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") - add_link_options(-fuse-ld=lld) + if (EXISTS /usr/bin/mold) + message(STATUS "Mold found, using as linker") + add_link_options(-fuse-ld=mold) + else () + add_link_options(-fuse-ld=lld) + endif () # Only warn for unknown sanitizers. This error is not major enough to error on. add_compile_options(-Wno-error=unknown-sanitizers) # Ignore pedantic nullability extension warning, as we only use this for clang specifically