You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
350 B
19 lines
350 B
set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/gold.exports)
|
|
|
|
if( LLVM_ENABLE_PIC AND LLVM_BINUTILS_INCDIR )
|
|
include_directories( ${LLVM_BINUTILS_INCDIR} )
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
Linker
|
|
LTO
|
|
BitWriter
|
|
IPO
|
|
)
|
|
|
|
add_llvm_library(LLVMgold MODULE
|
|
gold-plugin.cpp
|
|
)
|
|
|
|
endif()
|