Am Mo., 26. Aug. 2019 um 19:10 Uhr schrieb <to...@tuxteam.de>: > > On Mon, Aug 26, 2019 at 06:39:02PM +0200, Thomas Morley wrote: > > Am So., 25. Aug. 2019 um 22:22 Uhr schrieb Andy Wingo <wi...@pobox.com>: > > > > > > We are pleased to announce GNU Guile release 2.9.4. This is the fourth > > > pre-release of what will eventually become the 3.0 release series. > > > > > We encourage you to test this release and provide feedback to > > > guile-devel@gnu.org, and to file bugs by sending mail to > > > bug-gu...@gnu.org. > > > > Hi, > > > > I did in my guile-git-repository: > > > > git fetch > > git pull -r > > git checkout v2.9.4 > > git checkout -b guile-2.9.4 > > make clean > > sh autogen.sh > > ./configure > > make > > sudo make install > > > > All went well, but then doing: > > ~$ guile > > returns: > > guile: error while loading shared libraries: libguile-3.0.so.0: cannot > > open shared object file: No such file or directory > > > > But > > ~$ locate libguile-3.0.so.0 > > returns: > > /home/hermann/guile-3.0/libguile/.libs/libguile-3.0.so.0 > > /home/hermann/guile-3.0/libguile/.libs/libguile-3.0.so.0.0.0 > > Hm. After having done "sudo make install" above, I'd expect libguile > to land in /usr/local/lib somewhere: go look there. > > - Are you starting the "right" guile? (probably) > What does "which guile" say? > - What does "/usr/bin/ldd $(which guile) say? > > Perhaps you have to add /usr/local/lib to /etc/ld.so.conf (or some > file below /etc/ld.so.conf.d) and run ldconfig. > > HTH > -- tomás
Hi tomás, thanks for your hints. I've got it work by running nothing else than sudo ldconfig But I wonder, shouldn't it work out of the box with 'sudo make install' ? Thanks, Harm