diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-01-28 16:49:05 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-01-28 16:49:05 +0000 |
commit | e789bdb870a2c4ddd72df310aa7357c0ca18bf6a (patch) | |
tree | 4262fcb361c21784cbfbc5fc23154e2c813695cc /llvm/lib/ExecutionEngine | |
parent | 7e9e2909522a28020d8a5f98f8effd594dd19415 (diff) | |
download | bcm5719-llvm-e789bdb870a2c4ddd72df310aa7357c0ca18bf6a.tar.gz bcm5719-llvm-e789bdb870a2c4ddd72df310aa7357c0ca18bf6a.zip |
Fix libffi usage when it is on a custom path.
llvm-svn: 124486
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt b/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt index c8e4b6eedcd..d331f830b62 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt +++ b/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt @@ -6,14 +6,6 @@ if( FFI_INCLUDE_PATH ) include_directories( ${FFI_INCLUDE_PATH} ) 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 Execution.cpp ExternalFunctions.cpp @@ -21,5 +13,5 @@ add_llvm_library(LLVMInterpreter ) if( LLVM_ENABLE_FFI ) - target_link_libraries( LLVMInterpreter ffi ) + target_link_libraries( LLVMInterpreter ${FFI_LIBRARY_PATH} ) endif() |