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?
| |||
|
feedback
|
|
To compile a Scheme module. invoke the
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. | |||
|
feedback
|