From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: neil@ossau.homelinux.net Newsgroups: gmane.lisp.guile.user Subject: Re: load-extension fails with "file not found" message Date: Thu, 12 May 2016 09:01:24 +0100 Message-ID: <20160512080124.5910610.86346.34735@ossau.homelinux.net> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Trace: ger.gmane.org 1463044810 21948 80.91.229.3 (12 May 2016 09:20:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 12 May 2016 09:20:10 +0000 (UTC) To: Panicz Maciej Godek , guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Thu May 12 11:20:00 2016 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1b0mml-00026D-Td for guile-user@m.gmane.org; Thu, 12 May 2016 11:20:00 +0200 Original-Received: from localhost ([::1]:56476 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b0mmk-0003O7-Rj for guile-user@m.gmane.org; Thu, 12 May 2016 05:19:58 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54996) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b0lYw-0004lo-0j for guile-user@gnu.org; Thu, 12 May 2016 04:01:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b0lYq-0006z0-A3 for guile-user@gnu.org; Thu, 12 May 2016 04:01:37 -0400 Original-Received: from smtp-out-3.talktalk.net ([62.24.135.67]:7064) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b0lYp-0006xu-W1 for guile-user@gnu.org; Thu, 12 May 2016 04:01:32 -0400 Original-Received: from arudy.520b.com ([79.75.40.59]) by smtp.talktalk.net with SMTP id 0lYjbxdqnUaZt0lYjbx0Co; Thu, 12 May 2016 09:01:25 +0100 X-Originating-IP: [79.75.40.59] X-Spam: 0 X-OAuthority: v=2.2 cv=M4MPEG4s c=1 sm=1 tr=0 a=VGtl/dN+xtDzjgxFh/V0Rw==:117 a=VGtl/dN+xtDzjgxFh/V0Rw==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=yrkiwgmsf1kA:10 a=mDV3o1hIAAAA:8 a=uZV8QSnxNeXhWPBGt8IA:9 a=kHze_N4VYKgQQ_He:21 a=_W_S_7VecoQA:10 a=_FVE-zBwftR9WsbkzFJk:22 Original-Received: from [127.0.0.1] (unknown [213.205.251.119]) by arudy.520b.com (Postfix) with ESMTPSA id CC2B738007; Thu, 12 May 2016 08:56:34 +0100 (BST) X-Mailer: BlackBerry Email (10.3.2.2876) In-Reply-To: X-CMAE-Envelope: MS4wfFtyuNbKOlFbflTUq3iABI5652SvmPUCk2m4yPC8rLv8MBKL0cXnumEImD2WFsIh5uJCEXiWVoKxkCvlKY0a5V13jy2OaU5g0Sf/fuYCHoxqy1Ff0aYZ kqD55+M3Ju+50LbtRlGmVxBuqjpEuf/rj95neCgKlF1IXCFUhImodbUNGe4I7y/QqmecKTaljz6shnKXE7kEmMxLTrGsDnFmqqM= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 62.24.135.67 X-Mailman-Approved-At: Thu, 12 May 2016 05:19:48 -0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:12570 Archived-At: I don't know, but this rings a bell. I suggest running under strace and looking at the stat syscalls, to see where Guile is looking. Neil (from a phone that only does top posting - sorry!) From: Panicz Maciej Godek Sent: Thursday, 12 May 2016 08:21 To: guile-user@gnu.org Subject: load-extension fails with "file not found" message Hi, I recently made update of ubuntu, and I've been trying to get my guile-based framework to work. First, the guile 2.0.11 installed through Guix caused core dumps on initialization, so I switched to the version from the ubuntu repository. Now I've been trying to load some of the extensions needed for my program to run. However, when I try to load-extension, I get the error: ERROR: In procedure load-extension: ERROR: In procedure dynamic-link: file: "physics", message: "file not found" I also tried to pass the full path, either with or without the ".so" suffix, but it keeps failing. What could be the possible reason?