summaryrefslogtreecommitdiff
path: root/tools/gold/CMakeLists.txt
blob: 07a1e2849b9525fd8a343581f54c6260ba130d12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
set(LLVM_BINUTILS_INCDIR "" CACHE PATH
  "PATH to binutils/include containing plugin-api.h for gold plugin.")

set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/gold.exports)

if( NOT LLVM_BINUTILS_INCDIR )
  # Nothing to say.
elseif( NOT EXISTS "${LLVM_BINUTILS_INCDIR}/plugin-api.h" )
  message(STATUS "plugin-api.h not found. gold plugin excluded from the build.")
else()
  include_directories( ${LLVM_BINUTILS_INCDIR} )

  # Because off_t is used in the public API, the largefile parts are required for
  # ABI compatibility.
  add_definitions( -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 )

  set(LLVM_LINK_COMPONENTS support)

  add_llvm_loadable_module(LLVMgold
    gold-plugin.cpp
    )

  target_link_libraries(LLVMgold ${cmake_2_8_12_PRIVATE} LTO)

endif()