summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Linker/Linux-LLD.cmake
blob: 9d261e28e716514da0a6b56b967b67fb0d0cafd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file LICENSE.rst or https://cmake.org/licensing for details.


# This module is shared by multiple languages; use include blocker.
include_guard()


include(Platform/Linker/Linux-GNU)


macro(__linux_linker_lld lang)
  __linux_linker_gnu(${lang})

  set(CMAKE_${lang}_PLATFORM_LINKER_ID LLD)
  set(CMAKE_${lang}_LINK_LIBRARIES_PROCESSING ORDER=REVERSE DEDUPLICATION=ALL)
endmacro()