* Guile under win32
@ 2002-03-12 20:43 Chris Frost
2002-03-12 21:31 ` Chris Frost
2002-03-13 14:23 ` Brian
0 siblings, 2 replies; 5+ messages in thread
From: Chris Frost @ 2002-03-12 20:43 UTC (permalink / raw)
I'd like to use guile for in a win32 program: I found a distribution
of guile 1.4, but upon entering gh_enter() I get an error message saying
it was unable to find the file "ice-9/boot-9.scm"; however, the ice-9 directory
is in the directory of the program being ran so it should find this file.
I realize this seems more like a msvc++ question, but does anyone have
any suggestions that might stem from possible-guile-issues?
I obtained guile (and libregex.dll) for win32 from here fwiw:
http://www.textsure.net/~ela/download/
tia!
--
Chris Frost | <http://www.frostnet.net/chris/>
-------------+----------------------------------
Public PGP Key:
Email chris@frostnet.net with the subject "retrieve pgp key"
or visit <http://www.frostnet.net/chris/about/pgp_key.phtml>
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Guile under win32
2002-03-12 20:43 Guile under win32 Chris Frost
@ 2002-03-12 21:31 ` Chris Frost
2002-03-13 14:23 ` Brian
1 sibling, 0 replies; 5+ messages in thread
From: Chris Frost @ 2002-03-12 21:31 UTC (permalink / raw)
Fwiw I also looked in the guile list archive. I did find the same question
(posted in 1997), but no answers at the time.
thanks again,
--
Chris Frost | <http://www.frostnet.net/chris/>
-------------+----------------------------------
Public PGP Key:
Email chris@frostnet.net with the subject "retrieve pgp key"
or visit <http://www.frostnet.net/chris/about/pgp_key.phtml>
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: Guile under win32
2002-03-12 20:43 Guile under win32 Chris Frost
2002-03-12 21:31 ` Chris Frost
@ 2002-03-13 14:23 ` Brian
2002-03-13 18:01 ` Chris Frost
1 sibling, 1 reply; 5+ messages in thread
From: Brian @ 2002-03-13 14:23 UTC (permalink / raw)
Do you have your GUILE_LOAD_PATH environment variable set?
> -----Original Message-----
> From: guile-user-admin@gnu.org [mailto:guile-user-admin@gnu.org]On
> Behalf Of Chris Frost
> Sent: Tuesday, March 12, 2002 2:43 PM
> To: guile-user@gnu.org
> Subject: Guile under win32
>
>
> I'd like to use guile for in a win32 program: I found a distribution
> of guile 1.4, but upon entering gh_enter() I get an error message saying
> it was unable to find the file "ice-9/boot-9.scm"; however, the
> ice-9 directory
> is in the directory of the program being ran so it should find this file.
> I realize this seems more like a msvc++ question, but does anyone have
> any suggestions that might stem from possible-guile-issues?
>
> I obtained guile (and libregex.dll) for win32 from here fwiw:
> http://www.textsure.net/~ela/download/
>
> tia!
> --
> Chris Frost | <http://www.frostnet.net/chris/>
> -------------+----------------------------------
> Public PGP Key:
> Email chris@frostnet.net with the subject "retrieve pgp key"
> or visit <http://www.frostnet.net/chris/about/pgp_key.phtml>
>
> _______________________________________________
> Guile-user mailing list
> Guile-user@gnu.org
> http://mail.gnu.org/mailman/listinfo/guile-user
>
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Guile under win32
2002-03-13 14:23 ` Brian
@ 2002-03-13 18:01 ` Chris Frost
2002-03-13 18:49 ` Brian
0 siblings, 1 reply; 5+ messages in thread
From: Chris Frost @ 2002-03-13 18:01 UTC (permalink / raw)
On Wed, Mar 13, 2002 at 08:23:33AM -0600, Brian wrote:
> Do you have your GUILE_LOAD_PATH environment variable set?
It was not, thanks!
Now that I have guile going under win32, I'd like to use it with Microsoft's
MFCs. I found the thread on this list from 1998 which seemed to basically
say it wasn't doable, is this still the case?
thanks again,
--
Chris Frost | <http://www.frostnet.net/chris/>
-------------+----------------------------------
Public PGP Key:
Email chris@frostnet.net with the subject "retrieve pgp key"
or visit <http://www.frostnet.net/chris/about/pgp_key.phtml>
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: Guile under win32
2002-03-13 18:01 ` Chris Frost
@ 2002-03-13 18:49 ` Brian
0 siblings, 0 replies; 5+ messages in thread
From: Brian @ 2002-03-13 18:49 UTC (permalink / raw)
> Now that I have guile going under win32, I'd like to use it with
> Microsoft's
> MFCs. I found the thread on this list from 1998 which seemed to basically
> say it wasn't doable, is this still the case?
>
> thanks again,
> --
> Chris Frost | <http://www.frostnet.net/chris/>
Not sure why it would not be doable. Maybe because, in the past, libguile
had to be initialized right at program startup, (scm_boot_guile). That's
not the case as of 1.5.??. Look at scm_init_guile. Also, read the section
on Guile Initialization Functions at http://www.lilypond.org/wiki/?Guile.
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-03-13 18:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-12 20:43 Guile under win32 Chris Frost
2002-03-12 21:31 ` Chris Frost
2002-03-13 14:23 ` Brian
2002-03-13 18:01 ` Chris Frost
2002-03-13 18:49 ` Brian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).