I've written a scheme file in DrRacket/Scheme and I have my .rkt file. I need to now compile what I've written with Bigloo. I have Bigloo installed, but I'm not sure how to use it.

Anyone know how?

link|improve this question

76% accept rate
feedback

1 Answer

To compile a Scheme module. invoke the bigloo compiler with the -c option:

bigloo -c foo1.scm

This will output an object file (.o). You can link object files into an executable with the command:

bigloo foo1.o foo2.o -o foo

You can also compile and link in a single step:

bigloo foo1.scm foo2.scm -o foo

See this link for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.