libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v2 01/12] ltmain.sh: Fix sysroot paths being encoded into RPATHs


From: Sam James
Subject: [PATCH v2 01/12] ltmain.sh: Fix sysroot paths being encoded into RPATHs
Date: Sat, 16 Apr 2022 18:58:14 +0100

From: Richard Purdie <richard.purdie@linuxfoundation.org>

There is a bug where RPATHs could end up containing sysroot values when
cross compiling which is obviously incorrect. Strip out sysroot components
from libdir when building RPATH values to avoid this.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 build-aux/ltmain.in | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in
index a5f21a1d..d3a03a53 100644
--- a/build-aux/ltmain.in
+++ b/build-aux/ltmain.in
@@ -7676,9 +7676,11 @@ EOF
          test relink = "$opt_mode" || rpath=$compile_rpath$rpath
          for libdir in $rpath; do
            if test -n "$hardcode_libdir_flag_spec"; then
+             func_replace_sysroot "$libdir"
+             libdir=$func_replace_sysroot_result
+             func_stripname '=' '' "$libdir"
+             libdir=$func_stripname_result
              if test -n "$hardcode_libdir_separator"; then
-               func_replace_sysroot "$libdir"
-               libdir=$func_replace_sysroot_result
                if test -z "$hardcode_libdirs"; then
                  hardcode_libdirs=$libdir
                else
@@ -8408,6 +8410,10 @@ EOF
       hardcode_libdirs=
       for libdir in $compile_rpath $finalize_rpath; do
        if test -n "$hardcode_libdir_flag_spec"; then
+         func_replace_sysroot "$libdir"
+         libdir=$func_replace_sysroot_result
+         func_stripname '=' '' "$libdir"
+         libdir=$func_stripname_result
          if test -n "$hardcode_libdir_separator"; then
            if test -z "$hardcode_libdirs"; then
              hardcode_libdirs=$libdir
@@ -8459,6 +8465,10 @@ EOF
       hardcode_libdirs=
       for libdir in $finalize_rpath; do
        if test -n "$hardcode_libdir_flag_spec"; then
+         func_replace_sysroot "$libdir"
+         libdir=$func_replace_sysroot_result
+         func_stripname '=' '' "$libdir"
+         libdir=$func_stripname_result
          if test -n "$hardcode_libdir_separator"; then
            if test -z "$hardcode_libdirs"; then
              hardcode_libdirs=$libdir
-- 
2.35.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]