From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32135 invoked by alias); 4 Dec 2012 12:52:05 -0000 Received: (qmail 32059 invoked by uid 22791); 4 Dec 2012 12:52:03 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-oa0-f41.google.com (HELO mail-oa0-f41.google.com) (209.85.219.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 04 Dec 2012 12:51:58 +0000 Received: by mail-oa0-f41.google.com with SMTP id k14so4464456oag.0 for ; Tue, 04 Dec 2012 04:51:57 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:x-gm-message-state; bh=yHof2flN6hZhptKrV2A12I3VMFbQLGcrk3p847A4DPw=; b=QEY1RM4kuevzcPc/svCRx/vMmHNv9et9uyrn7WJb7Bvb1UpglgAtAIiFM94ilK4hWl j7f1TCF6i6yCDDl1ag3B8kKQ1aNQLLdfw0ahRxetffXRAhk52eGlweLpW0TR8HAbbNq1 TO24IBeKWmAaWsw/ibTcwHna812S8mw+KjnpZazR2dYXfxhOe0WJIOjYA3WiKrAp2FNd w0Mw3NCpkcpLDYKwKdpOWJHJ+EbBLIFIWqfGjxpE27KjoElgFk877+TP9u6m/CTnBTBC 5M/KwH8OKWKIJBgpO7LALX8FTjW2kTzpEDRUCfikK2hJ4zo6nwOfxPYgEDpmu1MzDnBf jnHg== MIME-Version: 1.0 Received: by 10.182.92.70 with SMTP id ck6mr7490189obb.46.1354625517650; Tue, 04 Dec 2012 04:51:57 -0800 (PST) Received: by 10.76.142.98 with HTTP; Tue, 4 Dec 2012 04:51:57 -0800 (PST) In-Reply-To: <20121203152719.GC22509@einval.com> References: <20121203152515.GB22509@einval.com> <20121203152719.GC22509@einval.com> Date: Tue, 04 Dec 2012 12:52:00 -0000 Message-ID: Subject: Re: [PATCH] AArch64: Tag ARM libc6-dependent libraries with FLAG_ELF_LIBC6 cache From: Marcus Shawcroft To: Steve McIntyre Cc: libc-ports@sourceware.org, "Carlos O'Donell" , "Joseph S. Myers" Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQkZ8RucTOGQ2Il4+cdOeYHEMvN+uGH6GWm9fdaAbHbC4QdzVAhP9Pc/J82MRw8PODczYIiN X-IsSubscribed: yes 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/msg00018.txt.bz2 On 3 December 2012 15:27, Steve McIntyre wrote: > 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 }, OK, Ill apply this for you shortly. /Marcus