From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#22571: Guix on Debian Testing sbcl package needs warning to set SBCL_HOME Date: Sat, 06 Feb 2016 14:06:57 +0100 Message-ID: <874mdm0yz2.fsf@gnu.org> References: <87y4aycs21.fsf@mordocai.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55480) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aS2as-0001a3-6S for bug-guix@gnu.org; Sat, 06 Feb 2016 08:08:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aS2ao-0003mD-5y for bug-guix@gnu.org; Sat, 06 Feb 2016 08:08:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54840) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aS2ao-0003m7-1r for bug-guix@gnu.org; Sat, 06 Feb 2016 08:08:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84) (envelope-from ) id 1aS2an-0000ol-SM for bug-guix@gnu.org; Sat, 06 Feb 2016 08:08:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87y4aycs21.fsf@mordocai.net> (Christopher W. Carpenter's message of "Fri, 05 Feb 2016 23:40:02 -0600") 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: Christopher W Carpenter Cc: 22571@debbugs.gnu.org Christopher W Carpenter skribis: > When doing guix package -i sbcl on my newly setup debian testing + guix > machine and then attempting to run sbcl I got the error: > > fatal error encountered in SBCL pid 7492(tid 140737354086144): > can't find core file at /usr/lib64/sbcl/sbcl.core Are you sure you were running ~/.guix-profile/bin/sbcl? I=E2=80=99ve just tried this on GuixSD, to check whether sbcl systematically looks for things in /usr: --8<---------------cut here---------------start------------->8--- $ strace -f -o ,,s $(guix build sbcl | head -1)/bin/sbcl=20 This is SBCL 1.2.8, an implementation of ANSI Common Lisp. More information about SBCL is available at . SBCL is free software, provided as is, with absolutely no warranty. It is mostly in the public domain; some portions are provided under BSD-style licenses. See the CREDITS and COPYING files in the distribution for more information. * (+ 2 3) 5 * $ grep /usr ,,s [ nothing ] --8<---------------cut here---------------end--------------->8--- However, it loads /etc/sbclrc. Could it be that your host distro provides such a file, which tweaks sbcl into reading from /usr/lib64? Thanks for the report, Ludo=E2=80=99.