From 358d0e3732ffa2c7204d20a302c065b71806e3b8 Mon Sep 17 00:00:00 2001 From: Anuj Mittal Date: Fri, 3 Apr 2020 15:10:37 +0800 Subject: [PATCH 23/24] fix path to libffi FFI_LIBRARY_PATH is the full path to libffi so when building something that links to libLLVMInterpreter, we were looking for libffi in clang's recipe-sysroot instead of the recipe's sysroot. Signed-off-by: Anuj Mittal Signed-off-by: Khem Raj --- llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt b/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt index b8adea5b7a9..7d8434c2d0e 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt +++ b/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt @@ -16,5 +16,5 @@ add_llvm_component_library(LLVMInterpreter ) if( LLVM_ENABLE_FFI ) - target_link_libraries( LLVMInterpreter PRIVATE ${FFI_LIBRARY_PATH} ) + target_link_libraries( LLVMInterpreter PRIVATE ffi ) endif() -- 2.27.0