Re: [racket] Using raco exe [summary]

2010-06-14 Thread Norman Gray
Matthew (and list), hello. On 2010 Jun 13, at 12:44, Norman Gray wrote: > On 2010 Jun 12, at 13:53, Matthew Flatt wrote: > >> The problem may be that you are compiling the extension for CGC, but >> you're linking and running for 3m. As a result, some local pointers in >> the implementation of t

Re: [racket] Using raco exe

2010-06-13 Thread Norman Gray
Matthew, hello. On 2010 Jun 12, at 13:53, Matthew Flatt wrote: > The problem may be that you are compiling the extension for CGC, but > you're linking and running for 3m. As a result, some local pointers in > the implementation of the extension are invisible to the GC. Aha, it would have taken

Re: [racket] Using raco exe

2010-06-12 Thread Matthew Flatt
The problem may be that you are compiling the extension for CGC, but you're linking and running for 3m. As a result, some local pointers in the implementation of the extension are invisible to the GC. Along those lines, my guess is that requiring `web-server/servlet' changes the timing of a GC so

[racket] Using raco exe

2010-06-11 Thread Norman Gray
Greetings. I'm having difficulty using raco to build a standalone executable which requires both web-server/servlet and an extension. The raco documentation seems to suggest that I'm doing the right thing, but I'm getting an error I can't really parse. Can anyone help? The players: A w