From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Newsgroups: gmane.lisp.guile.user Subject: Re: Guile Build Errors Date: Mon, 05 Oct 2009 11:02:01 +0200 Message-ID: <87my46tdrq.fsf@gnu.org> References: <25167250.post@talk.nabble.com> <87ljl040px.fsf@gnu.org> <25236356.post@talk.nabble.com> <87k50h20th.fsf@gnu.org> <25254370.post@talk.nabble.com> <8763c1zhvr.fsf@gnu.org> <87zl86iyoe.fsf@ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1254733390 7456 80.91.229.12 (5 Oct 2009 09:03:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 5 Oct 2009 09:03:10 +0000 (UTC) Cc: guile-user@gnu.org To: Neil Jerram Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Mon Oct 05 11:03:05 2009 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MujTE-0002Ie-VA for guile-user@m.gmane.org; Mon, 05 Oct 2009 11:03:05 +0200 Original-Received: from localhost ([127.0.0.1]:49510 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MujTF-000557-5G for guile-user@m.gmane.org; Mon, 05 Oct 2009 05:03:05 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MujSL-0004jE-Ha for guile-user@gnu.org; Mon, 05 Oct 2009 05:02:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MujSG-0004gG-Fj for guile-user@gnu.org; Mon, 05 Oct 2009 05:02:08 -0400 Original-Received: from [199.232.76.173] (port=57494 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MujSG-0004g9-7P for guile-user@gnu.org; Mon, 05 Oct 2009 05:02:04 -0400 Original-Received: from mail1-relais-roc.national.inria.fr ([192.134.164.82]:8113) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.60) (envelope-from ) id 1MujSF-00032s-Cn for guile-user@gnu.org; Mon, 05 Oct 2009 05:02:03 -0400 X-IronPort-AV: E=Sophos;i="4.44,505,1249250400"; d="scan'208";a="37547861" Original-Received: from laptop-147-210-128-170.labri.fr (HELO nixey) ([147.210.128.170]) by mail1-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-SHA; 05 Oct 2009 11:02:01 +0200 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 14 =?iso-8859-1?Q?Vend=E9miaire?= an 218 de la =?iso-8859-1?Q?R=E9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 821D 815D 902A 7EAB 5CEE D120 7FBA 3D4F EB1F 5364 X-OS: x86_64-unknown-linux-gnu In-Reply-To: <87zl86iyoe.fsf@ossau.uklinux.net> (Neil Jerram's message of "Sun, 04 Oct 2009 23:25:53 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7439 Archived-At: Hi, Neil Jerram writes: > ludo@gnu.org (Ludovic Court=C3=A8s) writes: > >> Note that you can already use (or rather debug ;-)) Guile without >> `dlpreopen'. You just won't be able to load modules that call >> `load-extension'. In 1.8, it means you cannot use SRFI-1 and SRFI-60. > > What about statically linking all of the necessary libraries, and adding > a scm_c_register_extension () call to the application startup code for > each (load-extension ...) call that you expect Scheme code to make? > Wouldn't that work? Yes, that should work, but it=E2=80=99s a bit of kludge in the sense that t= he application shouldn=E2=80=99t have to know about all this. Thanks, Ludo=E2=80=99.