blob: 38f9b0025c783cd3422e5ca2b84b63422a24a464 [file] [log] [blame]
Patrick Williams7784c422022-11-17 07:29:11 -06001From 20bc4e03442e15965ae3907013e9a177878f0323 Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Ross Burton <ross.burton@intel.com>
3Date: Thu, 4 Feb 2016 16:22:50 +0000
4Subject: [PATCH] libffi: ensure sysroot paths are not in libffi.pc
5
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05006libffi's configure assumes that cross-compiled builds are complicated and
7introduces convoluted path manipulation involving gcc search paths to the
8install paths, resulting in paths like -L/usr/lib/../lib/ appearing in
9libffi.pc. When pkg-config is then used to obtain the linker flags for libffi
10it can't tell that this path is on the default search path and returns
11$SYSROOT/usr/lib/../lib which then gets written all over the target sysroot.
12This then means the sstate can't be shared and triggers QA errors.
13
14As this block is generally pointless, disable it.
15
16Upstream-Status: Inappropriate
17Signed-off-by: Ross Burton <ross.burton@intel.com>
18
Andrew Geissler82c905d2020-04-13 13:39:40 -050019---
20 configure.ac | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23diff --git a/configure.ac b/configure.ac
Patrick Williams7784c422022-11-17 07:29:11 -060024index 7e8cd98..cf37e88 100644
Brad Bishopc68388fc2019-08-26 01:33:31 -040025--- a/configure.ac
26+++ b/configure.ac
Patrick Williams7784c422022-11-17 07:29:11 -060027@@ -405,7 +405,7 @@ AC_ARG_ENABLE(multi-os-directory,
28
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050029 # These variables are only ever used when we cross-build to X86_WIN32.
30 # And we only support this with GCC, so...
31-if test "x$GCC" = "xyes"; then
32+if false; then
33 if test -n "$with_cross_host" &&
Brad Bishop316dfdd2018-06-25 12:45:53 -040034 test x"$with_cross_host" != x"no"; then
Andrew Geissler82c905d2020-04-13 13:39:40 -050035 toolexecdir='${exec_prefix}'/'$(target_alias)'