From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Wingo Subject: Re: bug#24544: 2.1.4 tarball install fails on GuixSD Date: Wed, 22 Feb 2017 23:22:56 +0100 Message-ID: <87vas1x3un.fsf@pobox.com> References: <8737knaip1.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53348) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cgfJY-0007BP-NG for guix-devel@gnu.org; Wed, 22 Feb 2017 17:23:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cgfJT-00075f-L2 for guix-devel@gnu.org; Wed, 22 Feb 2017 17:23:12 -0500 In-Reply-To: <8737knaip1.fsf@gnu.org> (Jan Nieuwenhuizen's message of "Sun, 25 Sep 2016 21:22:02 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Jan Nieuwenhuizen Cc: guix-devel@gnu.org, 24544-done@debbugs.gnu.org On Sun 25 Sep 2016 21:22, Jan Nieuwenhuizen writes: > ld-wrapper: error: attempt to use impure library "/home/janneke/guile-2.1.4/lib/libguile-2.2.so" > collect2: error: ld returned 1 exit status > libtool: error: error: relink 'guile-readline.la' with the above command before installing it This is because Guix is silly and thinks that even when you are installing to /rando/prefix/that/you/like that it's bad to link to thinks outside /gnu/store. The workaround is to export GUIX_LD_WRAPPER_ALLOW_IMPURITIES=yesplease. (Actually any value.) The real fix is to prevent ld-wrapper from carping for normal installs to non-store prefixen! Andy