From 129a4482675c7bbd5250f5a6ebe86666eed21067 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Wed, 18 May 2022 17:22:57 +0200 Subject: [PATCH] Use mold as linker for clang, if available --- CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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