Re: [ANN] CHICKEN 6.0.0 rerlease candidate available

Felix Winkelmann via Chicken-users <[email protected]> Tue, 12 May 2026 22:08:52 +0200
Newsgroups gmane.lisp.scheme.chicken
Message-ID <[email protected]>
On Tue May 12, 2026 at 6:59 PM CEST, Arnaud Bailly via Chicken-users wrote:
> I got the following error on Mac OS X
>
> % ./configure --prefix $(pwd)
> ...
> % make install check
> ...
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D csc tests ...
> dyld[2447]: Library not loaded: libchicken.dylib
>   Referenced from: <97962E57-3D9C-3F6C-8883-0CF8EAE42A40>
> /Users/arnaud/projects/microgpt/microgpt-scheme/chicken-6.0.0rc3/csc
>   Reason: tried: 'libchicken.dylib' (no such file),
> '/System/Volumes/Preboot/Cryptexes/OSlibchicken.dylib' (no such file),
> 'libchicken.dylib' (no such file),
> '/Users/arnaud/projects/microgpt/microgpt-scheme/chicken-6.0.0rc3/tests/l=
ibchicken.dylib'
> (no such file),
> '/System/Volumes/Preboot/Cryptexes/OS/Users/arnaud/projects/microgpt/micr=
ogpt-scheme/chicken-6.0.0rc3/tests/libchicken.dylib'
> (no such file),
> '/Users/arnaud/projects/microgpt/microgpt-scheme/chicken-6.0.0rc3/tests/l=
ibchicken.dylib'
> (no such file)
>

Note that on Mac OS DYLD_ environment variables are not passed on
in shells, if I remember correctly. You may have to disable "SIP".
This should be taken care of by install_name_tool, though.

If you do=20

  make clean all check

does that change anything?


cheers,
felix