From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20762 invoked by alias); 3 Dec 2012 15:28:13 -0000 Received: (qmail 20734 invoked by uid 22791); 3 Dec 2012 15:28:12 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from cheddar.halon.org.uk (HELO cheddar.halon.org.uk) (217.10.144.130) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 03 Dec 2012 15:28:07 +0000 Received: from bsmtp by cheddar.halon.org.uk with local-bsmtp (Exim 4.72) (envelope-from ) id 1TfXwE-0002wU-Hy; Mon, 03 Dec 2012 15:28:06 +0000 Received: from steve by tack.local with local (Exim 4.80) (envelope-from ) id 1TfXvT-0006r0-Vp; Mon, 03 Dec 2012 15:27:20 +0000 Date: Mon, 03 Dec 2012 15:28:00 -0000 From: Steve McIntyre To: libc-ports@sourceware.org Cc: Carlos O'Donell , "Joseph S. Myers" , Marcus Shawcroft Subject: [PATCH] AArch64: Tag ARM libc6-dependent libraries with FLAG_ELF_LIBC6 cache Message-ID: <20121203152719.GC22509@einval.com> References: <20121203152515.GB22509@einval.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121203152515.GB22509@einval.com> X-attached: none User-Agent: Mutt/1.5.21 (2010-09-15) Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-12/txt/msg00002.txt.bz2 And here's my second patch for AArch64 - tag programs depending on the interpreter name. ========================================================================= Tag ARM libc6-dependent libraries with FLAG_ELF_LIBC6 * sysdeps/unix/sysv/linux/aarch64/ldconfig.h: Add entries for /lib/ld-linux.so.3 and /lib/ld-linux-armhf.so.3. Signed-off-by: Steve McIntyre --- ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h b/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h index 4c1af06..d0517d8 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h @@ -19,7 +19,9 @@ #include #define SYSDEP_KNOWN_INTERPRETER_NAMES \ - { "/lib/ld-linux-aarch64.so.1", FLAG_ELF_LIBC6 }, + { "/lib/ld-linux-aarch64.so.1", FLAG_ELF_LIBC6 }, \ + { "/lib/ld-linux.so.3", FLAG_ELF_LIBC6 }, \ + { "/lib/ld-linux-armhf.so.3", FLAG_ELF_LIBC6 }, #define SYSDEP_KNOWN_LIBRARY_NAMES \ { "libc.so.6", FLAG_ELF_LIBC6 }, \ { "libm.so.6", FLAG_ELF_LIBC6 }, -- 1.7.10.4 Cheers, -- Steve McIntyre steve.mcintyre@linaro.org Linaro.org | Open source software for ARM SoCs