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?
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?
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.