This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

ldd on ia64-linux


Currently, ldd on ia64-linux contains:

RTLDLIST="/lib/ld-linux-ia64-ia64.so.2 /lib/ld-linux-ia64.so.2"

This does not make any sense.  Instead we want this:

RTLDLIST="/lib/ld-linux-ia64.so.2 /lib/ld-linux.so.2"

I think we can assume that the original name always includes "-ia64".

Andreas.

2002-01-16  Andreas Schwab  <schwab@suse.de>

	* sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed: Fix regexp to
	reliably remove "-ia64" from rtld name.

--- sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed.~1.1.~	Wed Sep 19 05:13:52 2001
+++ sysdeps/unix/sysv/linux/ia64/ldd-rewrite.sed	Wed Jan 16 16:33:37 2002
@@ -1 +1 @@
-s_^\(RTLDLIST=\)\([^ 	]*\)\(\|-ia64\)\(\.so\.[0-9.]*\)[ 	]*$_\1"\2-ia64\4 \2\4"_
+s_^\(RTLDLIST=\)\([^ 	]*\)-ia64\(\.so\.[0-9.]*\)[ 	]*$_\1"\2-ia64\3 \2\3"_

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE GmbH, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]