I'm trying to load PDP but it can't find libgslcblas.so.0 . If I look for it on my system it is at /usr/lib/libgslcblas.so.0 . Any thoughts on how I can fix this. The output of PD and " locate libgsl " is below. Jim
/usr/lib/pd/externs/pdp.pd_linux: libgslcblas.so.0: cannot open shared object file: No such file or directory /usr/lib/pd/externs/pdp: can't load library
Pd: signal 2 pd: exiting [root@localhost externs]# locate libgsl /usr/lib/libgslcblas.so.0.0.0 /usr/lib/libgsl.la /usr/lib/libgsl.so.0 /usr/lib/libgsl.so.0.5.0 /usr/lib/libgslcblas.la /usr/lib/libgslcblas.so.0
hi jim,
try running 'ldconfig'
tom
On Mon, 21 Jun 2004, jim ruxton wrote:
I'm trying to load PDP but it can't find libgslcblas.so.0 . If I look for it on my system it is at /usr/lib/libgslcblas.so.0 . Any thoughts on how I can fix this. The output of PD and " locate libgsl " is below. Jim
/usr/lib/pd/externs/pdp.pd_linux: libgslcblas.so.0: cannot open shared object file: No such file or directory /usr/lib/pd/externs/pdp: can't load library
Pd: signal 2 pd: exiting [root@localhost externs]# locate libgsl /usr/lib/libgslcblas.so.0.0.0 /usr/lib/libgsl.la /usr/lib/libgsl.so.0 /usr/lib/libgsl.so.0.5.0 /usr/lib/libgslcblas.la /usr/lib/libgslcblas.so.0
PD-list mailing list PD-list@iem.at to manage your subscription (including un-subscription) see http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hi Tom, I tried ldconfig but get the same result. Any other ideas of what I can try? Jim
hi jim,
try running 'ldconfig'
tom
On Mon, 21 Jun 2004, jim ruxton wrote:
I'm trying to load PDP but it can't find libgslcblas.so.0 . If I look for it on my system it is at /usr/lib/libgslcblas.so.0 . Any thoughts on how I can fix this. The output of PD and " locate libgsl " is below. Jim
/usr/lib/pd/externs/pdp.pd_linux: libgslcblas.so.0: cannot open shared object file: No such file or directory /usr/lib/pd/externs/pdp: can't load library
Pd: signal 2 pd: exiting [root@localhost externs]# locate libgsl /usr/lib/libgslcblas.so.0.0.0 /usr/lib/libgsl.la /usr/lib/libgsl.so.0 /usr/lib/libgsl.so.0.5.0 /usr/lib/libgslcblas.la /usr/lib/libgslcblas.so.0
PD-list mailing list PD-list@iem.at to manage your subscription (including un-subscription) see http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hallo, jim ruxton hat gesagt: // jim ruxton wrote:
I'm trying to load PDP but it can't find libgslcblas.so.0 . If I look for it on my system it is at /usr/lib/libgslcblas.so.0 . Any thoughts on how I can fix this.
/usr/lib/pd/externs/pdp.pd_linux: libgslcblas.so.0: cannot open shared object file: No such file or directory /usr/lib/pd/externs/pdp: can't load library [root@localhost externs]# locate libgsl /usr/lib/libgslcblas.so.0.0.0 /usr/lib/libgsl.la /usr/lib/libgsl.so.0 /usr/lib/libgsl.so.0.5.0 /usr/lib/libgslcblas.la /usr/lib/libgslcblas.so.0
Well, you don't have libgslcblas.so.0 as pdp tells us. You do have libgslcblas.so.0.0.0 though. My best bet would be to try linking them with a symbolic link like:
# cd /usr/lib # ln -s libgslcblas.so.0.0.0 libgslcblas.so.0
Frank Barknecht _ ______footils.org__
Frank Barknecht wrote:
/usr/lib/pd/externs/pdp.pd_linux: libgslcblas.so.0: cannot open shared object file: No such file or directory /usr/lib/pd/externs/pdp: can't load library [root@localhost externs]# locate libgsl /usr/lib/libgslcblas.so.0.0.0 /usr/lib/libgsl.la /usr/lib/libgsl.so.0 /usr/lib/libgsl.so.0.5.0 /usr/lib/libgslcblas.la /usr/lib/libgslcblas.so.0
Well, you don't have libgslcblas.so.0 as pdp tells us. You do have libgslcblas.so.0.0.0 though. My best bet would be to try linking them with a symbolic link like:
# cd /usr/lib # ln -s libgslcblas.so.0.0.0 libgslcblas.so.0
not that bad (despite your other email) i would suggest: # ls -l /usr/lib/libgslcblas.so.*
you will most likely find that it libgslcblas.so.0 links to some non-existant file; if libgslcblas.so.0.0.0 is valid, try linking to that one.
mfg.asd.r IOhannes
Thanks IOhaness,
I just noticed that ldconfig as suggested by Tom moved the files to /usr/local/lib . Here is the result of
# ls -l /usr/local/lib/libgslcblas.so* lrwxrwxrwx 1 root root 20 Jun 21 14:15 /usr/local/lib/libgslcblas.so -> libgslcblas.so.0.0.0 lrwxrwxrwx 1 root root 20 Jun 21 14:15 /usr/local/lib/libgslcblas.so.0 -> libgslcblas.so.0.0.0 -rwxr-xr-x 1 root root 540209 Jun 21 14:15 /usr/local/lib/libgslcblas.so.0.0.0
you will most likely find that it libgslcblas.so.0 links to some non-existant file; if libgslcblas.so.0.0.0 is valid, try linking to that one.
Looks like it is already linked. Hmm what should I try next?
Jim
mfg.asd.r IOhannes
PD-list mailing list PD-list@iem.at to manage your subscription (including un-subscription) see http://iem.at/cgi-bin/mailman/listinfo/pd-list
On Tue, 22 Jun 2004, jim ruxton wrote:
Thanks IOhaness,
I just noticed that ldconfig as suggested by Tom moved the files to /usr/local/lib . Here is the result of
# ls -l /usr/local/lib/libgslcblas.so* lrwxrwxrwx 1 root root 20 Jun 21 14:15 /usr/local/lib/libgslcblas.so -> libgslcblas.so.0.0.0 lrwxrwxrwx 1 root root 20 Jun 21 14:15 /usr/local/lib/libgslcblas.so.0 -> libgslcblas.so.0.0.0 -rwxr-xr-x 1 root root 540209 Jun 21 14:15 /usr/local/lib/libgslcblas.so.0.0.0
you will most likely find that it libgslcblas.so.0 links to some non-existant file; if libgslcblas.so.0.0.0 is valid, try linking to that one.
Looks like it is already linked. Hmm what should I try next?
because of the /usr/lib and /usr/local/lib thing it looks like you have 2 installs of gsl / cblas. one as a package and one from source? if so, try removing one of them.
other than that i can't say but 'it should work'...
tom