From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/7340 Path: news.gmane.org!not-for-mail From: "Matias A. Fonzo" Newsgroups: gmane.linux.lib.musl.general Subject: Re: musl ldd? Date: Sat, 4 Apr 2015 20:40:41 -0300 Message-ID: <20150404204041.2a23db2c@dragora.org> References: <20150403145542.GE27899@port70.net> <20150403195800.GE6817@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1428190653 24034 80.91.229.3 (4 Apr 2015 23:37:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 4 Apr 2015 23:37:33 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-7353-gllmg-musl=m.gmane.org@lists.openwall.com Sun Apr 05 01:37:28 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1YeXd2-0004VY-8r for gllmg-musl@m.gmane.org; Sun, 05 Apr 2015 01:37:28 +0200 Original-Received: (qmail 29727 invoked by uid 550); 4 Apr 2015 23:37:25 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 29696 invoked from network); 4 Apr 2015 23:37:24 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=dragora.org; s=default; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:To:From:Date; bh=MO335XPZPkSc3i8D2ZOgrFDSSuUV0QL2GFRzwpaQ4JQ=; b=kNKmmmI1h3l+fvmIGgdKB/M8aBGxM0dLgrayFmT58vVeScQ3ajj4+qDzIHtsmkfelMyJs0KbQX6cEvuOu6r9Fs9fDGbm4LNCBTnPeiN9gLvM9Sx20w641HyNgnl8laIOLWG79dUk+UOQbI0tXWCX4QFFtAZtyz1Ckt7oHxPdvMw=; In-Reply-To: <20150403195800.GE6817@brightrain.aerifal.cx> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.10; x86_64-dragora-linux-gnu) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - afrodita.astranetwork.net X-AntiAbuse: Original Domain - lists.openwall.com X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - dragora.org X-Get-Message-Sender-Via: afrodita.astranetwork.net: authenticated_id: selk@dragora.org X-Source: X-Source-Args: X-Source-Dir: X-From-Rewrite: unmodified, already matched Xref: news.gmane.org gmane.linux.lib.musl.general:7340 Archived-At: Hi there, There's a special reason why "[libc_name-]ldd -> libc/loader" is not generated when musl is configured/installed?. El Fri, 3 Apr 2015 15:58:00 -0400 Rich Felker escribi=C3=B3: > On Fri, Apr 03, 2015 at 07:41:08PM +0000, Wermut wrote: > > If there are other ldd providing C libraries installed, you can > > also make a link with its name ending in *ldd for the musl > > libc/loader. > >=20 > > e.g. # ln -s /usr/local/bin/musl-ldd /lib/ld-musl-x86_64.so.1 >=20 > Or you can invoke it as: >=20 > /lib/ld-musl-x86_64.so.1 --list a.out >=20 > This form is the nicest in many ways since it does not depend on > argv[0]. >=20 > Rich