Re: [racket] create-embedding-executable

2010-06-27 Thread Laurent
On Sun, Jun 27, 2010 at 15:19, Matthew Flatt wrote: > Does your call to `create-embedding-executable' work if you disable > debugging in DrRacket or if you run from command-line Racket? > It works, thank you! Maybe it could be a good idea to add an example like this one in the docs, because it t

Re: [racket] create-embedding-executable

2010-06-27 Thread Matthew Flatt
Does your call to `create-embedding-executable' work if you disable debugging in DrRacket or if you run from command-line Racket? I think the problem is that DrRacket configures the compiler to add errortrace-debugging instrumentation and to use ".zo" files that are instrumented, and that is inter

[racket] create-embedding-executable

2010-06-27 Thread Laurent
Hi, I'm trying to use `create-embedding-executable' (DrRacket 5.0, WinXP and Vista), with this little module: #lang racket/gui (define f (new frame% [label "Test"])) (send f show #t) But I don't know exactly how to set the arguments to produce the same result as "raco exe --gui", which works f