UCB Scheme - source building instructions for UNIX These instructions pertain to *Unix*, such as Solaris. Other unix variants may require modifications in the source and build scripts. To build and install stk under Unix, please perform the following steps. 1. Obtain the most recent sources using subversion. svn co https://isvn.eecs.berkeley.edu/scheme/trunk 2. You will end up with two folders. One is labeled stk and the second one ucb. 3. change directory into stk first and configure the stk distribution. INSTALLROOT is the location you want to install stk. The default is /usr/local. cd stk ./configure --prefix=$INSTALLROOT --disable-dynload --disable-elf --disable-dld 4. Once the configure is complete, compile stk. gmake 5. Once gmake completes, install stk. gmake install 6. Now change directory to the second folder labeled "ucb" cd ../ucb 7. Configure ucb with the same INSTALLROOT you choose for stk. ./configure --prefix=$INSTALLROOT 8. Once the configure is complete, compile ucb. gmake 9. Once gmake completes, install ucb files. gmake install ------------------------------------------------------------------------ Go back to the main UCB Scheme site. ------------------------------------------------------------------------ scheme@inst.EECS.Berkeley.EDU