aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2011-01-28 16:49:05 +0000
committerOscar Fuentes <ofv@wanadoo.es>2011-01-28 16:49:05 +0000
commitabcae24d991844ac6ac33b773b1007e2e901575c (patch)
treed55390347ae4bbfd6a5e76e82c88f711070333d9 /lib/ExecutionEngine/Interpreter
parent14e66553d57ebec1d8ca6619f6570c5342a7a764 (diff)
downloadexternal_llvm-abcae24d991844ac6ac33b773b1007e2e901575c.zip
external_llvm-abcae24d991844ac6ac33b773b1007e2e901575c.tar.gz
external_llvm-abcae24d991844ac6ac33b773b1007e2e901575c.tar.bz2
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
Diffstat (limited to 'lib/ExecutionEngine/Interpreter')
-rw-r--r--lib/ExecutionEngine/Interpreter/CMakeLists.txt10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/ExecutionEngine/Interpreter/CMakeLists.txt b/lib/ExecutionEngine/Interpreter/CMakeLists.txt
index c8e4b6e..d331f83 100644
--- a/lib/ExecutionEngine/Interpreter/CMakeLists.txt
+++ b/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()