Re: Error when compiling file using Bigloo Scheme

2022-07-08 Thread Sam Lee
On 2022-07-08 16:25 +0200, zimoun wrote: > On jeu., 07 juil. 2022 at 15:56, Sam Lee wrote: > > > $ bigloo myfile.scm > > /usr/bin/ld: cannot find -lunistring > > collect2: error: ld returned 1 exit status > > Indeed, bigloo requires some packages

Error when compiling file using Bigloo Scheme

2022-07-08 Thread Sam Lee
I installed Bigloo version 4.3g using Guix, but there is always an error when trying to compile a Scheme program: $ bigloo myfile.scm /usr/bin/ld: cannot find -lunistring collect2: error: ld returned 1 exit status Contents of myfile.scm: (module mymodule (main start))