mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
82b6e6053d
No longer rely on an external tool to build the llvm component layout. Instead, leverage the existing `add_llvm_componentlibrary` cmake function and introduce `add_llvm_component_group` to accurately describe component behavior. These function store extra properties in the created targets. These properties are processed once all components are defined to resolve library dependencies and produce the header expected by llvm-config. Differential Revision: https://reviews.llvm.org/D90848
27 lines
638 B
CMake
27 lines
638 B
CMake
# Make sure that the path to libffi headers is on the command
|
|
# line. That path can be a compiler's non-default path even when
|
|
# FFI_INCLUDE_DIR was not used, because cmake has its own paths for
|
|
# searching for headers (CMAKE_SYSTEM_INCLUDE_PATH, for instance):
|
|
if( FFI_INCLUDE_PATH )
|
|
include_directories( ${FFI_INCLUDE_PATH} )
|
|
endif()
|
|
|
|
add_llvm_component_library(LLVMInterpreter
|
|
Execution.cpp
|
|
ExternalFunctions.cpp
|
|
Interpreter.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
|
|
LINK_COMPONENTS
|
|
CodeGen
|
|
Core
|
|
ExecutionEngine
|
|
Support
|
|
)
|
|
|
|
if( LLVM_ENABLE_FFI )
|
|
target_link_libraries( LLVMInterpreter PRIVATE ${FFI_LIBRARY_PATH} )
|
|
endif()
|