From b9e55a520462b53a646b418701ccdb3a1befb633 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 15 Mar 2019 12:20:58 -0500 Subject: [PATCH] Revert "Only permit use of ld.lld linker when the Clang compiler is used." This reverts commit 7ca10c52d89ec0e201320acaa9b34822d47779df. --- cmake/checks/check_02_compiler_features.cmake | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cmake/checks/check_02_compiler_features.cmake b/cmake/checks/check_02_compiler_features.cmake index fae50833f9..d108cc4767 100644 --- a/cmake/checks/check_02_compiler_features.cmake +++ b/cmake/checks/check_02_compiler_features.cmake @@ -460,11 +460,7 @@ CHECK_CXX_SOURCE_COMPILES( DEAL_II_COMPILER_HAS_FUSE_LD_GOLD) RESET_CMAKE_REQUIRED() -# -# The ld.lld linker is not compatible with GCC. So we only enable it when -# the Clang compiler is used. See https://github.com/dealii/dealii/issues/7811 -# -IF(DEAL_II_COMPILER_HAS_FUSE_LD_LLD AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") +IF(DEAL_II_COMPILER_HAS_FUSE_LD_LLD) ADD_FLAGS(DEAL_II_LINKER_FLAGS "-fuse-ld=lld") ELSEIF(DEAL_II_COMPILER_HAS_FUSE_LD_GOLD) ADD_FLAGS(DEAL_II_LINKER_FLAGS "-fuse-ld=gold") -- 2.39.5