[racket] Compiling Racket bytecode hangs…

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Sat Mar 12 12:29:28 EST 2011

At Sat, 12 Mar 2011 10:09:23 -0700, jenny sun wrote:
> Hi, I was trying to compile Racket bytecode to excecutable. However, when I
> typed racket parser_rkt.zo, then there was nothing showing but the cursor
> kept flashing...What reasons can it be?

In a shell,

 racket parser_rkt.zo

runs "parser_rkt.zo". Whatever "parser_rkt.zo" does, it sounds like it
doesn't print output right away.


If you really want to a create an executable, then

 raco exe -o parser parser_rkt.zo

creates a "parser" executable so that

 ./parser

is the same as

 racket parser_rkt.zo



Posted on the users mailing list.