2013-12-10 11:13:32 +00:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
|
|
BitReader
|
|
|
|
Core
|
|
|
|
MCDisassembler
|
|
|
|
Object
|
|
|
|
Target
|
|
|
|
)
|
2013-10-23 08:10:20 +00:00
|
|
|
|
2014-12-18 21:03:49 +00:00
|
|
|
# We should only have llvm-c-test use libLLVM if libLLVM is built with the
|
|
|
|
# default list of components. Using libLLVM with custom components can result in
|
|
|
|
# build failures.
|
|
|
|
|
|
|
|
set (USE_LLVM_DYLIB FALSE)
|
|
|
|
|
|
|
|
if (TARGET LLVM)
|
|
|
|
set (USE_LLVM_DYLIB TRUE)
|
|
|
|
if (DEFINED LLVM_DYLIB_COMPONENTS)
|
|
|
|
foreach(c in ${LLVM_LINK_COMPONENTS})
|
|
|
|
list(FIND LLVM_DYLIB_COMPONENTS ${c} C_IDX)
|
|
|
|
if (C_IDX EQUAL -1)
|
|
|
|
set(USE_LLVM_DYLIB FALSE)
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_LLVM_DYLIB)
|
2014-11-10 15:04:26 +00:00
|
|
|
set(LLVM_LINK_COMPONENTS)
|
|
|
|
endif()
|
|
|
|
|
2013-10-23 08:10:20 +00:00
|
|
|
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
2014-01-08 11:48:19 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -Wstrict-prototypes")
|
2013-10-23 08:10:20 +00:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
add_llvm_tool(llvm-c-test
|
|
|
|
calc.c
|
|
|
|
disassemble.c
|
|
|
|
helpers.c
|
|
|
|
include-all.c
|
|
|
|
main.c
|
|
|
|
module.c
|
|
|
|
object.c
|
|
|
|
targets.c
|
|
|
|
)
|
2014-11-10 15:04:26 +00:00
|
|
|
|
2014-12-18 21:03:49 +00:00
|
|
|
if(USE_LLVM_DYLIB)
|
2014-11-10 15:04:26 +00:00
|
|
|
target_link_libraries(llvm-c-test LLVM)
|
|
|
|
endif()
|