From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129413 invoked by alias); 26 Apr 2019 06:36:02 -0000 Mailing-List: contact libc-stable-help@sourceware.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Subscribe: List-Archive: Sender: libc-stable-owner@sourceware.org Received: (qmail 129402 invoked by uid 89); 26 Apr 2019 06:36:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.100.3 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-6.2 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy= X-Spam-Status: No, score=-6.2 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on sourceware.org X-Spam-Level: X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 26 Apr 2019 06:36:01 +0000 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 15D01C049D7C for ; Fri, 26 Apr 2019 06:36:00 +0000 (UTC) Received: from oldenburg2.str.redhat.com (ovpn-116-89.ams2.redhat.com [10.36.116.89]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5BE45171EA for ; Fri, 26 Apr 2019 06:35:59 +0000 (UTC) From: Florian Weimer To: libc-stable@sourceware.org Subject: Re: [2.28 COMMITTED] memusagestat: use local glibc when linking [BZ #18465] References: <20190424175839.EAE1982F876C@oldenburg2.str.redhat.com> Date: Tue, 01 Jan 2019 00:00:00 -0000 In-Reply-To: <20190424175839.EAE1982F876C@oldenburg2.str.redhat.com> (Florian Weimer's message of "Wed, 24 Apr 2019 19:58:39 +0200") Message-ID: <87bm0t9stu.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Fri, 26 Apr 2019 06:36:00 +0000 (UTC) X-IsSubscribed: yes X-SW-Source: 2019-04/txt/msg00007.txt.bz2 * Florian Weimer: > From: Mike Frysinger > > The memusagestat is the only binary that has its own link line which > causes it to be linked against the existing installed C library. It > has been this way since it was originally committed in 1999, but I > don't see any reason as to why. Since we want all the programs we > build locally to be against the new copy of glibc, change the build > to be like all other programs. > > (cherry picked from commit f9b645b4b0a10c43753296ce3fa40053fa44606a) Likewise, I had to revert this because of -Wl,-rpath-link= ordering issues. Thanks, Florian