[plt-scheme] How to have a .PLT distribution compiled on installation
At Thu, 26 May 2005 07:42:44 -0700 (PDT), Andrew Wilcox wrote:
> I'm a bit confused about how to package up a library for distribution.
> Following instructions in Chapter 6 of the MzScheme Compiler Manual,
> Creating Distribution Archives, I type:
>
> mzc --at-plt --plt modulus.plt collects
If this "collect" is in your collection path, try just
mzc --collection-plt modulus.plt modulus
Alternately, try adding "++setup modulus":
mzc --at-plt ++setup modulus --plt modulus.plt collects
Matthew