Re: Suggested correction to sisc/libs/srfi/srfi-8.scm
"Scott G. Miller" <[email protected]> Thu, 11 Mar 2010 14:06:48 -0600
| Newsgroups | gmane.comp.java.sisc.devel |
|---|---|
| Message-ID | <[email protected]> |
--===============4230769860111860407== Content-Type: multipart/alternative; boundary=0016e644c62872101604818bf4de --0016e644c62872101604818bf4de Content-Type: text/plain; charset=ISO-8859-1 Actually, I show srfi-8 already doing that. The code on the 1.16 tag is: (module srfi-8 (receive) (include "../../modules/srfi/srfi-8.scm") (add-feature 'srfi-8)) Scott On Thu, Mar 11, 2010 at 2:03 PM, Scott G. Miller <[email protected]> wrote: > Thanks, will fix. > > > On Thu, Mar 11, 2010 at 1:50 PM, Ben Goetter <[email protected]> wrote: > >> From a clean cvs enlistment in sisc, the results of "ant" at the >> topmost level. Everything proceeds swimmingly until it reaches the >> srfi-scc target: >> >> srfi-scc: >> [mkdir] Created dir: C:\Documents and Settings\Ben Goetter\My >> Documents\cvs\sisc\sisc\tmp\sisc\libs\srfi >> [java] Error in load: evaluation error at file:C:/Documents and >> Settings/Ben Goetter/My >> Documents/cvs/sisc/sisc/src/sisc/libs/srfi/srfi-scc.scm:8:50 >> [java] --------------------------- >> [java] To enable more detailed stack tracing, set the dynamic >> parameter max-stack-trace-depth to a non-zero value,e.g. 16. >> [java] --------------------------- >> [java] Some stack trace entries may have been suppressed. To see >> all entries set the dynamic parameter >> suppressed-stack-trace-source-kinds to '(). >> [java] =========================== >> [java] Caused by Error: import from unknown module srfi-8 >> [java] Java Result: 1 >> [copy] Copying 1 file to C:\Documents and Settings\Ben Goetter\My >> Documents\cvs\sisc\sisc\tmp\sisc\libs >> [jar] Building jar: C:\Documents and Settings\Ben Goetter\My >> Documents\cvs\sisc\sisc\sisc-lib.jar >> >> The error arises during the compile-file of sisc/libs/srfi/srfi-1.scm. >> That file calls require-library on 'sisc/libs/srfi/srfi-8, then later >> calls (import srfi-8). The latter import is raising the "unknown >> module" error, because sisc/libs/srfi/srfi-8.scm, unlike every other >> file in this directory, never calls add-feature. Hence the srfi-8 >> module identifier is never created. >> >> To correct this, replace sisc/libs/srfi/srfi-8.scm with the following: >> >> (module srfi-8 (receive) >> (include "../../modules/srfi/srfi-8.scm") >> (add-feature 'srfi-8)) >> >> >> >> >> ------------------------------------------------------------------------------ >> Download Intel® Parallel Studio Eval >> Try the new software tools for yourself. Speed compiling, find bugs >> proactively, and fine-tune applications for parallel performance. >> See why Intel Parallel Studio got high marks during beta. >> http://p.sf.net/sfu/intel-sw-dev >> _______________________________________________ >> SISC-devel mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/sisc-devel >> > > --0016e644c62872101604818bf4de Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Actually, I show srfi-8 already doing that.=A0 The code on the 1.16 tag is:= <br><br>(module srfi-8<br>=A0 (receive)<br>=A0 (include "../../modules= /srfi/srfi-8.scm")<br>=A0 (add-feature 'srfi-8))<br><br>Scott<br><= br><div class=3D"gmail_quote"> On Thu, Mar 11, 2010 at 2:03 PM, Scott G. Miller <span dir=3D"ltr"><<a h= ref=3D"mailto:[email protected]">[email protected]</a>></span> wrote:<= br><blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(20= 4, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> Thanks, will fix.<div><div></div><div class=3D"h5"><br><br><div class=3D"gm= ail_quote">On Thu, Mar 11, 2010 at 1:50 PM, Ben Goetter <span dir=3D"ltr">&= lt;<a href=3D"mailto:[email protected]" target=3D"_blank">[email protected]= et</a>></span> wrote:<br> <blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, = 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> =A0From a clean cvs enlistment in sisc, the results of "ant" at t= he<br> topmost level. =A0Everything proceeds swimmingly until it reaches the<br> srfi-scc target:<br> <br> srfi-scc:<br> =A0 =A0 [mkdir] Created dir: C:\Documents and Settings\Ben Goetter\My<br> Documents\cvs\sisc\sisc\tmp\sisc\libs\srfi<br> =A0 =A0 =A0[java] Error in load: evaluation error at file:C:/Documents and= <br> Settings/Ben Goetter/My<br> Documents/cvs/sisc/sisc/src/sisc/libs/srfi/srfi-scc.scm:8:50<br> =A0 =A0 =A0[java] ---------------------------<br> =A0 =A0 =A0[java] To enable more detailed stack tracing, set the dynamic<b= r> parameter max-stack-trace-depth to a non-zero value,e.g. 16.<br> =A0 =A0 =A0[java] ---------------------------<br> =A0 =A0 =A0[java] Some stack trace entries may have been suppressed. To se= e<br> all entries set the dynamic parameter<br> suppressed-stack-trace-source-kinds to '().<br> =A0 =A0 =A0[java] =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D<br> =A0 =A0 =A0[java] Caused by Error: import from unknown module srfi-8<br> =A0 =A0 =A0[java] Java Result: 1<br> =A0 =A0 =A0[copy] Copying 1 file to C:\Documents and Settings\Ben Goetter\= My<br> Documents\cvs\sisc\sisc\tmp\sisc\libs<br> =A0 =A0 =A0 [jar] Building jar: C:\Documents and Settings\Ben Goetter\My<b= r> Documents\cvs\sisc\sisc\sisc-lib.jar<br> <br> The error arises during the compile-file of sisc/libs/srfi/srfi-1.scm.<br> That file calls require-library on 'sisc/libs/srfi/srfi-8, then later<b= r> calls (import srfi-8). =A0The latter import is raising the "unknown<br= > module" error, because sisc/libs/srfi/srfi-8.scm, unlike every other<b= r> file in this directory, never calls add-feature. =A0Hence the srfi-8<br> module identifier is never created.<br> <br> To correct this, replace sisc/libs/srfi/srfi-8.scm with the following:<br> <br> (module srfi-8 (receive)<br> =A0 (include "../../modules/srfi/srfi-8.scm")<br> =A0 (add-feature 'srfi-8))<br> <br> <br> <br> ---------------------------------------------------------------------------= ---<br> Download Intel&#174; Parallel Studio Eval<br> Try the new software tools for yourself. Speed compiling, find bugs<br> proactively, and fine-tune applications for parallel performance.<br> See why Intel Parallel Studio got high marks during beta.<br> <a href=3D"http://p.sf.net/sfu/intel-sw-dev" target=3D"_blank">http://p.sf.= net/sfu/intel-sw-dev</a><br> _______________________________________________<br> SISC-devel mailing list<br> <a href=3D"mailto:[email protected]" target=3D"_blank">SISC-= [email protected]</a><br> <a href=3D"https://lists.sourceforge.net/lists/listinfo/sisc-devel" target= =3D"_blank">https://lists.sourceforge.net/lists/listinfo/sisc-devel</a><br> </blockquote></div><br> </div></div></blockquote></div><br> --0016e644c62872101604818bf4de-- --===============4230769860111860407== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev --===============4230769860111860407== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ SISC-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sisc-devel --===============4230769860111860407==--