1 From 6e93d0328f499569db7ce6396f94f304ce340df8 Mon Sep 17 00:00:00 2001
2 From: Khem Raj <raj.khem@gmail.com>
3 Date: Mon, 6 Mar 2017 23:37:05 -0800
4 Subject: [PATCH] binutils-cross: Do not generate linker script directories
6 We don't place target libraries within ${exec_prefix}, we'd always place these
7 within the target sysroot within the standard library directories. Worse, the
8 append_to_lib_path code prefixes these paths with the sysroot which makes even
11 These directories therefore don't make sense in our case and mean we have to
12 relocate all the linker scripts if they're present. Dropping them
13 gives a reasonable performance improvement/simplification.
15 Upstream-Status: Inappropriate
19 Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 ld/genscripts.sh | 25 -------------------------
22 1 file changed, 25 deletions(-)
24 diff --git a/ld/genscripts.sh b/ld/genscripts.sh
25 index 46a2db7005c..4bb7c33f560 100755
26 --- a/ld/genscripts.sh
27 +++ b/ld/genscripts.sh
28 @@ -235,31 +235,6 @@ append_to_lib_path()
32 -# Always search $(tooldir)/lib, aka /usr/local/TARGET/lib when native
33 -# except when LIBPATH=":".
34 -if [ "${LIB_PATH}" != ":" ] ; then
36 - if [ "x${TOOL_LIB}" = "x" ] ; then
37 - if [ "x${NATIVE}" = "xyes" ] ; then
38 - libs="${exec_prefix}/${target_alias}/lib"
41 - # For multilib'ed targets, ensure both ${target_alias}/lib${LIBPATH_SUFFIX}
42 - # and ${TOOL_LIB}/lib${LIBPATH_SUFFIX} are in the default search path,
43 - # because 64bit libraries may be in both places, depending on
44 - # cross-development setup method (e.g.: /usr/s390x-linux/lib64
45 - # vs. /usr/s390-linux/lib64)
46 - for libpath_suffix in ${LIBPATH_SUFFIX}; do
47 - case "${NATIVE}:${libpath_suffix}:${TOOL_LIB}" in
48 - :* | *::* | *:*:*${libpath_suffix}) ;;
49 - *) libs="${exec_prefix}/${target_alias}/lib${libpath_suffix}" ;;
52 - libs="${exec_prefix}/${TOOL_LIB}/lib ${libs}"
54 - append_to_lib_path ${libs}
57 if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then
58 libs=${NATIVE_LIB_DIRS}
59 if [ "x${NATIVE}" = "xyes" ] ; then