summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/clang/clang/0023-fix-path-to-libffi.patch
blob: 40c06c16f5ffbfd199567c7fe52d5119c89afcc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 358d0e3732ffa2c7204d20a302c065b71806e3b8 Mon Sep 17 00:00:00 2001
From: Anuj Mittal <anuj.mittal@intel.com>
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 <anuj.mittal@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 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