Re: Crunch: Error when trying to build from scratch
Ben <[email protected]>
| Newsgroups | gmane.lisp.scheme.chicken |
|---|---|
| Message-ID | <[email protected]> |
Thanks, that worked. Maybe this is helpful to others, so I paste the entire routine: ``` $ mkdir -p ~/Builds/crunch-scheme $ cd ~/Builds/crunch-scheme $ git clone https://code.call-cc.org/git/chicken-core.git $ cd chicken-core $ sh scripts/bootstrap.sh $ export PREFIX=$HOME/Builds/crunch-scheme/crunch-scheme $ mkdir -p $PREFIX $ ./configure --prefix $PREFIX/crunch-scheme --chicken ./chicken-boot $ make $ make install $ cd $PREFIX $ ./bin/chicken-install -test crunch # Maybe add it to PATH export PATH="$PREFIX/bin:$PATH" # respectively in ~/.profile (or .bashrc) export PATH="$HOME/Builds/crunch-scheme/crunch-scheme/bin:$PATH" ``` On Sat, Dec 7, 2024, at 1:07 PM, [email protected] wrote: >> # So far so good >> # but then the last step > > Yes, sorry, we merged utf+r7rs into the master branch, so the instructions > need to be changed: you have to check out and bootstrap the master > branch, which has a few fixes. Also make sure to use crunch 0.5, which > has matching bugfixes. > > Sorry for the confusion - this is all still under heavy development. > > > cheers, > felix