From unknown Tue Jun 17 20:15:56 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#10326 <10326@debbugs.gnu.org> To: bug#10326 <10326@debbugs.gnu.org> Subject: Status: Need to document %load-path, %load-compiled-path, and add %search-load-compiled-path and load-compiled-from-path to API Reply-To: bug#10326 <10326@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:15:56 +0000 retitle 10326 Need to document %load-path, %load-compiled-path, and add %se= arch-load-compiled-path and load-compiled-from-path to API reassign 10326 guile submitter 10326 Ian Hulin severity 10326 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 19 10:02:55 2011 Received: (at submit) by debbugs.gnu.org; 19 Dec 2011 15:02:56 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Rcejv-0006jb-9p for submit@debbugs.gnu.org; Mon, 19 Dec 2011 10:02:55 -0500 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Rcejs-0006jO-Et for submit@debbugs.gnu.org; Mon, 19 Dec 2011 10:02:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rcehx-0002ni-E0 for submit@debbugs.gnu.org; Mon, 19 Dec 2011 10:00:59 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-4.5 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([140.186.70.17]:41485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rcehx-0002ne-CZ for submit@debbugs.gnu.org; Mon, 19 Dec 2011 10:00:53 -0500 Received: from eggs.gnu.org ([140.186.70.92]:49202) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rcehn-0003S8-TN for bug-guile@gnu.org; Mon, 19 Dec 2011 10:00:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rcehh-0002kU-HX for bug-guile@gnu.org; Mon, 19 Dec 2011 10:00:43 -0500 Received: from lo.gmane.org ([80.91.229.12]:55829) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rcehh-0002k1-CS for bug-guile@gnu.org; Mon, 19 Dec 2011 10:00:37 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Rcehc-000493-HH for bug-guile@gnu.org; Mon, 19 Dec 2011 16:00:32 +0100 Received: from cpc13-rdng21-2-0-cust334.15-3.cable.virginmedia.com ([82.12.149.79]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 19 Dec 2011 16:00:32 +0100 Received: from ian by cpc13-rdng21-2-0-cust334.15-3.cable.virginmedia.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 19 Dec 2011 16:00:32 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: bug-guile@gnu.org From: Ian Hulin Subject: Need to document %load-path, %load-compiled-path, and add %search-load-compiled-path and load-compiled-from-path to API Date: Mon, 19 Dec 2011 15:00:19 +0000 Lines: 41 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: cpc13-rdng21-2-0-cust334.15-3.cable.virginmedia.com User-Agent: Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/20111124 Thunderbird/8.0 X-Enigmail-Version: 1.3.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -5.9 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.9 (-----) Section 6.17.6 of the manual could do with a sections for %load-path and %load-compiled-path. e.g. — Variable: %load-path The list of directories which will currently be searched by load-from-path, primitive-load-path and %search-load-path to locate a scheme file. - Variable: %load-compiled-path The list of directories which will currently be searched by load-compiled-from-path and %search-load-compiled-path to locate a compiled scheme file. Also, Guile really needs to provide a %search-load-compiled-path and a load-compiled-from-path, it would have been useful in LilyPond code, and Manual Section 4.7 (discussing site locations says) "As with Scheme files, Guile searches a path to find compiled .go files, the %load-compiled-path. By default, this path has two entries: a path for Guile's files, and a path for site packages. You should install your .go files into the latter. Currently there is no procedure to get at this path, which is probably a bug." — Scheme Procedure: %search-load-compiled-path filename — C Function: scm_sys_search_load_compiled_path (filename) Search %load-compiled-path for the file named filename, which must be readable by the current user. If filename is found in the list of paths to search or is an absolute pathname, return its full pathname. Otherwise, return #f. — Scheme Procedure: load-compiled-from-path filename Similar to load-compiled, but searches for filename in the compiled load paths. From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 23 18:53:24 2011 Received: (at 10326) by debbugs.gnu.org; 23 Dec 2011 23:53:24 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ReEvU-0007JJ-3L for submit@debbugs.gnu.org; Fri, 23 Dec 2011 18:53:24 -0500 Received: from mail-wi0-f172.google.com ([209.85.212.172]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ReEvQ-0007JA-43 for 10326@debbugs.gnu.org; Fri, 23 Dec 2011 18:53:21 -0500 Received: by wibhj6 with SMTP id hj6so3683437wib.3 for <10326@debbugs.gnu.org>; Fri, 23 Dec 2011 15:51:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=from:to:subject:references:date:in-reply-to:message-id:user-agent :mime-version:content-type:content-transfer-encoding; bh=GWMT6no22rSRsOeeaPlU2lIRr5PaxOGulhlq2UJgmH4=; b=Db9S+LHffloPsl3g5R4Wt2mk6IXU7M6ezryRNvrONkAqnEEc3oyEUGw5vtQl10Gw89 DxvPgTOxK4RHkX9P5fJ7yp0IqIVnBhsE0sBs5Jahe+ptohCjb2+kidrz7A1i8U3WgXrG RFE5d/mt+MM4n/JCHcbHNfYU8WIneTNdCBLzQ= Received: by 10.180.19.138 with SMTP id f10mr45919360wie.3.1324684261227; Fri, 23 Dec 2011 15:51:01 -0800 (PST) Received: from Kagami.home (host86-169-200-186.range86-169.btcentralplus.com. [86.169.200.186]) by mx.google.com with ESMTPS id k5sm35679726wiz.9.2011.12.23.15.50.58 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 23 Dec 2011 15:50:59 -0800 (PST) From: Ian Price To: 10326@debbugs.gnu.org Subject: Re: bug#10326: Need to document %load-path, %load-compiled-path, and add %search-load-compiled-path and load-compiled-from-path to API References: Date: Fri, 23 Dec 2011 23:46:58 +0000 In-Reply-To: (Ian Hulin's message of "Mon, 19 Dec 2011 15:00:19 +0000") Message-ID: <87liq297gt.fsf@Kagami.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -4.2 (----) X-Debbugs-Envelope-To: 10326 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.1 (----) Ian Hulin writes: > Section 6.17.6 of the manual could do with a sections for %load-path > and %load-compiled-path. > > e.g. > =E2=80=94 Variable: %load-path > > The list of directories which will currently be searched by > load-from-path, primitive-load-path and %search-load-path to locate a > scheme file. > > - Variable: %load-compiled-path > > The list of directories which will currently be searched by > load-compiled-from-path and %search-load-compiled-path to locate a > compiled scheme file. %load-path is already documented in 2.0, in section 6.22.1, 6.17.6 may be a better place for it though, as that is where e.g. %search-load-path, %load-hook etc. are. %load-compiled-path seems to be only indirectly referred to in the %documentation for GUILE_LOAD_COMPILED_PATH and compiled-file-name. > Also, Guile really needs to provide a %search-load-compiled-path and a > load-compiled-from-path, it would have been useful in LilyPond code, and > Manual Section 4.7 (discussing site locations says) I don't see a %search-load-compiled-path or load-compiled-from-path in guile 2.0's stable branch. Where these removed? Or have I missed them? > "As with Scheme files, Guile searches a path to find compiled .go > files, the %load-compiled-path. By default, this path has two entries: > a path for Guile's files, and a path for site packages. You should > install your .go files into the latter. Currently there is no > procedure to get at this path, which is probably a bug." > > > =E2=80=94 Scheme Procedure: %search-load-compiled-path filename > =E2=80=94 C Function: scm_sys_search_load_compiled_path (filename) > > Search %load-compiled-path for the file named filename, which must > be readable by the current user. If filename is found in the list of > paths to search or is an absolute pathname, return its full pathname. > Otherwise, return #f. Unless you meant %search-load-compiled-path, this sounds similar to the documented procedure 'compiled-file-name' > > =E2=80=94 Scheme Procedure: load-compiled-from-path filename > > Similar to load-compiled, but searches for filename in the > compiled load paths. If the above is correct, this is just (compose load-compiled compiled-file-name), yes? Might be useful for symmetry with 'load-from-path' --=20 Ian Price "Programming is like pinball. The reward for doing it well is the opportunity to do it again" - from "The Wizardy Compiled" From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 24 07:24:56 2011 Received: (at 10326) by debbugs.gnu.org; 24 Dec 2011 12:24:56 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ReQel-0007U8-O7 for submit@debbugs.gnu.org; Sat, 24 Dec 2011 07:24:56 -0500 Received: from asmtp1.iomartmail.com ([62.128.201.248]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ReQei-0007U0-Pd for 10326@debbugs.gnu.org; Sat, 24 Dec 2011 07:24:54 -0500 Received: from asmtp1.iomartmail.com (localhost.localdomain [127.0.0.1]) by asmtp1.iomartmail.com (8.13.8/8.13.8) with ESMTP id pBOCMUTq026647; Sat, 24 Dec 2011 12:22:30 GMT Received: from [192.168.1.100] (cpc13-rdng21-2-0-cust334.15-3.cable.virginmedia.com [82.12.149.79]) (authenticated bits=0) by asmtp1.iomartmail.com (8.13.8/8.13.8) with ESMTP id pBOCMTX9026639; Sat, 24 Dec 2011 12:22:29 GMT Message-ID: <4EF5C40A.5010400@hulin.org.uk> Date: Sat, 24 Dec 2011 12:22:34 +0000 From: Ian Hulin User-Agent: Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/20111124 Thunderbird/8.0 MIME-Version: 1.0 Newsgroups: gmane.lisp.guile.bugs To: Ian Price Subject: Re: bug#10326: Need to document %load-path, %load-compiled-path, and add %search-load-compiled-path and load-compiled-from-path to API References: <87liq297gt.fsf@Kagami.home> In-Reply-To: <87liq297gt.fsf@Kagami.home> X-Enigmail-Version: 1.3.4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by asmtp1.iomartmail.com id pBOCMTX9026639 X-Spam-Score: -4.3 (----) X-Debbugs-Envelope-To: 10326 Cc: 10326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.0 (----) Hi Ian, On 23/12/11 23:46, Ian Price wrote: > Ian Hulin writes: >=20 >> Section 6.17.6 of the manual could do with a sections for >> %load-path and %load-compiled-path. >>=20 >> e.g. =E2=80=94 Variable: %load-path >>=20 >> The list of directories which will currently be searched by=20 >> load-from-path, primitive-load-path and %search-load-path to >> locate a scheme file. >>=20 >> - Variable: %load-compiled-path >>=20 >> The list of directories which will currently be searched by=20 >> load-compiled-from-path and %search-load-compiled-path to locate >> a compiled scheme file. >=20 > %load-path is already documented in 2.0, in section 6.22.1, 6.17.6 > may be a better place for it though, as that is where e.g. > %search-load-path, %load-hook etc. are. >=20 Or a cross-ref,or move it from 6.22 and put the cross-ref in here, depending on Guile's documentation policies. > %load-compiled-path seems to be only indirectly referred to in the=20 > %documentation for GUILE_LOAD_COMPILED_PATH and > compiled-file-name. >=20 >> Also, Guile really needs to provide a %search-load-compiled-path >> and a load-compiled-from-path, it would have been useful in >> LilyPond code, and Manual Section 4.7 (discussing site locations >> says) >=20 > I don't see a %search-load-compiled-path or load-compiled-from-path > in guile 2.0's stable branch. Where these removed? Or have I missed > them? >=20 I don't think they were ever implemented. >> "As with Scheme files, Guile searches a path to find compiled >> .go files, the %load-compiled-path. By default, this path has two >> entries: a path for Guile's files, and a path for site packages. >> You should install your .go files into the latter. Currently >> there is no procedure to get at this path, which is probably a >> bug." >>=20 >>=20 >> =E2=80=94 Scheme Procedure: %search-load-compiled-path filename =E2=80= =94 C >> Function: scm_sys_search_load_compiled_path (filename) >>=20 >> Search %load-compiled-path for the file named filename, which >> must be readable by the current user. If filename is found in the >> list of paths to search or is an absolute pathname, return its >> full pathname. Otherwise, return #f. >=20 > Unless you meant %search-load-compiled-path, this sounds similar to > the documented procedure 'compiled-file-name' No: compiled-file-name does more and different things which are intimately linked in to --auto-compile and its related cache. If you're compiling things to locations outside of this cache (as we need to do for LilyPond) you need to set a directory as an entry in %load-compiled-path and pass this explicitly to compile-file (guild compile if your doing this from within a build environment). We then need to have custom code to load the compiled files during startup. This is because the built-in things in load-from-path et al. rely on compiled-file-name which don't do the right thing if you're compiling to a location outside the --auto-compile cache. So. . . if we want to load our compiled scheme files, possibly produced from guild compile in a build, outside of the --auto-compile cache, we have to use load-compiled, which explicitly says "Load the compiled file named /filename/. The load paths are not searched." >>=20 >> =E2=80=94 Scheme Procedure: load-compiled-from-path filename >>=20 >> Similar to load-compiled, but searches for filename in the=20 >> compiled load paths. > If the above is correct, this is just (compose load-compiled > compiled-file-name), yes? No. See above > Might be useful for symmetry with 'load-from-path' >=20 Yes. Cheers, Ian Hulin From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 27 08:49:39 2012 Received: (at 10326) by debbugs.gnu.org; 27 Jan 2012 13:49:40 +0000 Received: from localhost ([127.0.0.1]:46382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RqmBP-00034G-3y for submit@debbugs.gnu.org; Fri, 27 Jan 2012 08:49:39 -0500 Received: from a-pb-sasl-sd.pobox.com ([74.115.168.62]:35439 helo=sasl.smtp.pobox.com) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RqmBM-000347-4y for 10326@debbugs.gnu.org; Fri, 27 Jan 2012 08:49:38 -0500 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTP id C54ED8531; Fri, 27 Jan 2012 08:48:57 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=vfI8ZLDvQ8zy8WeIr0zXqSK2xZs=; b=j9pn1g DDDva/Zpvtd7t5ILRuZJDPEqtjewTyYv/WKG8AmtBRpND19xU5OG5YFwm7IjOKAv 1RlX5hB6kOjCD1cGZYnKNSfG+FUJP8PENPsYD8OCggOJ9W6SXCFvYi6JM0MzmRLT svdIZMEsTuDKA/CuH/Jy/SZ+APA2CPAQEFa/4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=S6R+bonJn6zBehiRGoMyC3UO9mqQlpWo WeIy39s/FbT50DX+ae8ZJUhzPmQ8e3zSeHW55XZd71Ltob57TkG4YIl/ewmxpUmE SJqJ4iaTkxuaAjagOUfG+7LrJU7bntC33EDofoE7xcU1GIys5S1LTsDU8Dulk1gg BHi/iqGDB3w= Received: from a-pb-sasl-sd.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTP id BEBE58530; Fri, 27 Jan 2012 08:48:57 -0500 (EST) Received: from badger (unknown [90.164.198.39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTPSA id 02E37852E; Fri, 27 Jan 2012 08:48:56 -0500 (EST) From: Andy Wingo To: Ian Hulin Subject: Re: bug#10326: Need to document %load-path, %load-compiled-path, and add %search-load-compiled-path and load-compiled-from-path to API References: Date: Fri, 27 Jan 2012 13:20:08 +0100 In-Reply-To: (Ian Hulin's message of "Mon, 19 Dec 2011 15:00:19 +0000") Message-ID: <87ehulgww7.fsf@pobox.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Pobox-Relay-ID: A8A3B314-48ED-11E1-A1D2-65B1DE995924-02397024!a-pb-sasl-sd.pobox.com X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 10326 Cc: 10326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Hi Ian, Thank you for the bug report. As a result of this report we have added a fair amount of documentation and reorganized other things. In particular, see the new sections: Modules and the File System Installing Site Packages Load Paths On Mon 19 Dec 2011 16:00, Ian Hulin writes: > - Variable: %load-compiled-path > > The list of directories which will currently be searched by > load-compiled-from-path and %search-load-compiled-path to locate a > compiled scheme file. There is no load-compiled-from-path or %search-load-compiled-path. There is, however, search-path and %load-compiled-path. Guile doesn't simply look for compiled files: it looks for compiled files that correspond to source files. They could be in the load-compiled path or in the fallback path. The search rules are different here -- see "Load Paths" and "Compilation", for details. Auto-compilation only happens with the fallback path. Do you still think that load-compiled-from-path would be useful to you? If everything is set up correctly, load-from-path should be sufficient, as it would find the corresponding compiled file. > "As with Scheme files, Guile searches a path to find compiled .go > files, the %load-compiled-path. By default, this path has two entries: > a path for Guile's files, and a path for site packages. You should > install your .go files into the latter. Currently there is no > procedure to get at this path, which is probably a bug." I'll see about fixing this. Andy -- http://wingolog.org/ From debbugs-submit-bounces@debbugs.gnu.org Sun Mar 10 18:23:25 2013 Received: (at 10326-done) by debbugs.gnu.org; 10 Mar 2013 22:23:25 +0000 Received: from localhost ([127.0.0.1]:44629 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UEoeL-0008Rm-5J for submit@debbugs.gnu.org; Sun, 10 Mar 2013 18:23:25 -0400 Received: from a-pb-sasl-quonix.pobox.com ([208.72.237.25]:58669 helo=sasl.smtp.pobox.com) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UEoeH-0008Rd-Vq for 10326-done@debbugs.gnu.org; Sun, 10 Mar 2013 18:23:23 -0400 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id A7A6FC2B5; Sun, 10 Mar 2013 18:22:30 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=l9BxDYBMWpD1tzlI7E6W2a0FJ/s=; b=XTse/6 u1yg/TFyI7N7GbPH8q4XmFx1Pt4bHj+reX9OS8oeLJ0tNC9RshPEP5o9lkSslIl8 CDg0gzx6Q5dlJNC/+QlCfJn2nW8zrIPIFMfoK4fx/YyDWpggss4oAcExbxdFb2yR 8J0gLpQTqvcCZ5qE4qNl8EoXgAYLUtF+LloHk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=HOaT90pXlo0c2x0Mosq0cohhxAWP7TGm N+YdRtp3P3vz+eEAwNCq3VE/pb5SjbMspX8rPG1Vw9Ibqes+1CYvI4U30RghkwIP CRwIuP5jjHllUNcVLL621erl+bg+EK+1FA/IwSjLM61LE0bnY3wJx92dZFaSRyUG p5jDoGKuxv0= Received: from a-pb-sasl-quonix.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id 9762EC2B4; Sun, 10 Mar 2013 18:22:30 -0400 (EDT) Received: from badger (unknown [88.160.190.192]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTPSA id 10151C2B3; Sun, 10 Mar 2013 18:22:29 -0400 (EDT) From: Andy Wingo To: Ian Hulin Subject: Re: bug#10326: Need to document %load-path, %load-compiled-path, and add %search-load-compiled-path and load-compiled-from-path to API References: <87ehulgww7.fsf@pobox.com> Date: Sun, 10 Mar 2013 23:22:26 +0100 In-Reply-To: <87ehulgww7.fsf@pobox.com> (Andy Wingo's message of "Fri, 27 Jan 2012 13:20:08 +0100") Message-ID: <87ip4yuc7x.fsf@pobox.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: FF2DCB00-89D0-11E2-8AC9-59240E5B5709-02397024!a-pb-sasl-quonix.pobox.com X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: 10326-done Cc: 10326-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.3 (----) On Fri 27 Jan 2012 13:20, Andy Wingo writes: >> "As with Scheme files, Guile searches a path to find compiled .go >> files, the %load-compiled-path. By default, this path has two entries: >> a path for Guile's files, and a path for site packages. You should >> install your .go files into the latter. Currently there is no >> procedure to get at this path, which is probably a bug." > > I'll see about fixing this. Added %site-ccache-dir, and updated docs. Andy -- http://wingolog.org/ From unknown Tue Jun 17 20:15:56 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 08 Apr 2013 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator