mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
The static PIE patch was updated by Juro Bystricky <juro.bystricky@intel.com> to work with gcc 7.3. This update from the stable gcc 7 branch includes the retpoline functionality which is useful to assist with recent security issues. Two backported patches were dropped as they're included in 7.3. (From OE-Core rev: a4c1ede6876ad6b84ab2b3bece14bf0afdc9d6b7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
853 B
Diff
32 lines
853 B
Diff
From 9fab47d8662986ad887d9eddc39fcbe25e576383 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 20 Feb 2015 09:39:38 +0000
|
|
Subject: [PATCH 26/47] Avoid using libdir from .la which usually points to a
|
|
host path
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
Signed-off-by: Jonathan Liu <net147@gmail.com>
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
ltmain.sh | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/ltmain.sh b/ltmain.sh
|
|
index 0121fba707f..52bdbdb5f9c 100644
|
|
--- a/ltmain.sh
|
|
+++ b/ltmain.sh
|
|
@@ -5628,6 +5628,9 @@ func_mode_link ()
|
|
absdir="$abs_ladir"
|
|
libdir="$abs_ladir"
|
|
else
|
|
+ # Instead of using libdir from .la which usually points to a host path,
|
|
+ # use the path the .la is contained in.
|
|
+ libdir="$abs_ladir"
|
|
dir="$libdir"
|
|
absdir="$libdir"
|
|
fi
|
|
--
|
|
2.12.2
|
|
|