From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: bug#22659: Collision of /bin/ld Date: Mon, 15 Feb 2016 22:46:19 -0500 Message-ID: <87twl9pbas.fsf@netris.org> References: <20160214091227.GA10462@jasmine> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54052) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVWbS-00012F-KK for bug-guix@gnu.org; Mon, 15 Feb 2016 22:47:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVWbO-0002cg-Jk for bug-guix@gnu.org; Mon, 15 Feb 2016 22:47:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:49875) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVWbO-0002cc-Fm for bug-guix@gnu.org; Mon, 15 Feb 2016 22:47:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84) (envelope-from ) id 1aVWbO-0006C0-Bm for bug-guix@gnu.org; Mon, 15 Feb 2016 22:47:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20160214091227.GA10462@jasmine> (Leo Famulari's message of "Sun, 14 Feb 2016 04:12:27 -0500") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Leo Famulari Cc: 22659@debbugs.gnu.org Leo Famulari writes: > Invoking `guix environment guix`, I found this collision alarming. Do > you think it's a problem? > > I ran `guix pull` yesterday or the day before. Is there a way to > determine the git commit that corresponds with this version of Guix? > > I added the line breaks. > > warning: collision encountered: > /gnu/store/agnxzx1yza8ci0a1gz5pds8gdg8qmnz5-ld-wrapper-0/bin/ld > /gnu/store/dki0v5cvf1mhfz571k622xvzi1nyinl2-binutils-2.25.1/bin/ld > > warning: arbitrarily choosing > /gnu/store/agnxzx1yza8ci0a1gz5pds8gdg8qmnz5-ld-wrapper-0/bin/ld This collision is expected. The 'ld' within ld-wrapper, generated from the template in gnu/packages/ld-wrapper.in, automatically adds -rpath arguments to the linker for each shared library, so that the runtime linker will be able to find them in their non-standard locations. Mark