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:This will output an object file (.o). You can link object files into an executable with the command:
You can also compile and link in a single step:
See this link for more information.