Re: chez scheme can't load system shared library

2025-03-26 Thread Sebastian Dümcke
.org wrote: Date: Wed, 26 Mar 2025 10:23:19 +0200 From: André A. Gomes To: Pan Xie Cc: Felix Lechner,help-g...@gnu.org, guix-devel@gnu.org Subject: Re: chez scheme can't load system shared library Message-ID:<871pukurns@gmail.com> Content-Type: text/plain; charset=utf-8 Pan

Re: chez scheme can't load system shared library

2025-03-26 Thread Ricardo Wurmus
André A. Gomes writes: Pan Xie writes: scheme can't start up with LD_LIBRARY_PATH set: $ LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH scheme Segmentation fault (core dumped) $ LD_LIBRARY_PATH='/usr/lib' scheme Segmentation fault (core dumped) The question by Pan has been answered but I have

Re: chez scheme can't load system shared library

2025-03-26 Thread André A . Gomes
Pan Xie writes: > Thanks for your response. Unfortunately, it does not work: > > > `LD_LIBRARY_PATH' is empty in my shell: > > $ echo $LD_LIBRARY_PATH > > > scheme can't start up with LD_LIBRARY_PATH set: > > $ LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH scheme > Segmentation fault (core dumped) >

Re: chez scheme can't load system shared library

2025-03-26 Thread Sebastian Dümcke
Not sure how to answer to a particular meesage from the digest emals I am receiving. Hope this finds the right person and thus not upset anyone. Hi Pan, you need to set LD_LIBRARY_PATH to your profile library path (and then load without absolute path in chez). The following works for me: > g

Re: chez scheme can't load system shared library

2025-03-25 Thread Pan Xie
Hello Sebastian Based on your suggestion, now I figure out that I have to install guix openssl, even though I already I have openssl libraries installed in "/usr/lib". The following works for me now: $ guix install openssl $ LD_LIBRARY_PATH=~/.guix-profile/lib scheme (load-shared-object

Re: chez scheme can't load system shared library

2025-03-25 Thread Pan Xie
Hi Felix Lechner, Thanks for your response. Unfortunately, it does not work: `LD_LIBRARY_PATH' is empty in my shell: $ echo $LD_LIBRARY_PATH scheme can't start up with LD_LIBRARY_PATH set: $ LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH scheme Segmentation fault (core dumped) $ LD_LIBRARY_PAT

Re: chez scheme can't load system shared library

2025-03-24 Thread Development of GNU Guix and the GNU System distribution.
Hi Xie Pan, On Tue, Mar 25 2025, Pan Xie wrote: > *this* chez scheme can not load system shared library correctly: I have never used Chez Scheme but suspect you have to set LD_LIBRARY_PATH. In Bash, it might look like something like this: $ LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH chez-sche