mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-30 20:24:32 +00:00
Fix libffi usage when it is on a custom path.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124486 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -6,14 +6,6 @@ if( FFI_INCLUDE_PATH )
|
|||||||
include_directories( ${FFI_INCLUDE_PATH} )
|
include_directories( ${FFI_INCLUDE_PATH} )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Make sure that the path to libffi archive is on the command
|
|
||||||
# line. That path can be a linker's non-default path even when
|
|
||||||
# FFI_LIBRARY_DIR was not used, because cmake has its own paths for
|
|
||||||
# searching for libraries (CMAKE_SYSTEM_LIBRARY_PATH, for instance):
|
|
||||||
if( FFI_LIBRARY_PATH )
|
|
||||||
link_directories( ${FFI_LIBRARY_PATH} )
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_llvm_library(LLVMInterpreter
|
add_llvm_library(LLVMInterpreter
|
||||||
Execution.cpp
|
Execution.cpp
|
||||||
ExternalFunctions.cpp
|
ExternalFunctions.cpp
|
||||||
@ -21,5 +13,5 @@ add_llvm_library(LLVMInterpreter
|
|||||||
)
|
)
|
||||||
|
|
||||||
if( LLVM_ENABLE_FFI )
|
if( LLVM_ENABLE_FFI )
|
||||||
target_link_libraries( LLVMInterpreter ffi )
|
target_link_libraries( LLVMInterpreter ${FFI_LIBRARY_PATH} )
|
||||||
endif()
|
endif()
|
||||||
|
Reference in New Issue
Block a user