> the only way to build from git sources is using a development snapshot of > CHICKEN 6
just for completion sake, the snapshot from https://code.call-cc.org/dev-snapshots/ indeed build on my machine $: wget https://code.call-cc.org/dev-snapshots/2024/12/09/chicken-6.0.0pre1.tar.gz ... $: ./configure --prefix $HOME/Builds/chicken-crunch/chicken && make && make install Unfortunately the 'crunch' egg, which is the reason I'm trying to build Chicken 6, fails to install $: svn co --username anonymous --password "" https://[email protected]/svn/chicken-eggs/release/6/crunch $: cd crunch/tags/0.991 $: $HOME/Builds/chicken-crunch/chicken/bin/chicken-install /Users/ben/Builds/chicken-crunch/chicken/bin/csc -host -D compiling-extension -J -s -regenerate-import-libraries -setup-mode -I [..]/crunch/tags/0.991 -O2 -d1 crunch.compiler.debug.scm -o [...]/crunch/tags/0.991/crunch.compiler.debug.so Error: Module `crunch.compiler.debug' has unresolved identifiers In fle `crunch.compiler.debug.scm': Unknown identifier `process-input-port' In procedure `connect-to-debugger' on line 353 Unknown identifier `process-output-port' On line 355 Error: shell command terminated with non-zero exit status 1: '/Users/ben/Builds/chicken-crunch/chicken/bin/chicken' 'crunch.compiler.debug.scm' '-output-file' '/Volumes/t7sams2tb01/ben_storedir_t7sams2tb01/Dev/Builds.home/chicken-crunch/crunch/tags/0.991/crunch.compiler.debug.c' '-dynamic' '-feature' 'chicken-compile-shared' '-feature' 'compiling-extension' '-emit-all-import-libraries' '-regenerate-import-libraries' '-setup-mode' '-include-path' '/Volumes/t7sams2tb01/ben_storedir_t7sams2tb01/Dev/Builds.home/chicken-crunch/crunch/tags/0.991' '-optimize-level' '2' '-debug-level' '1' Error: shell command terminated with nonzero exit code 256 "sh [...]/crunch/tags/0.991/crunch.build.sh" I already had the same error and reported it here on the list, but I cannot apply it to the situation here ....
