Re: CsoundVST problem
Date | 2005-10-13 17:34 |
From | Michael Gogins |
Subject | Re: CsoundVST problem |
I'll do another Linux build when I can, either tonight or early next week. Perhaps your LD_LIBRARY_PATH also needs to be updated. However, currently I only test on Fedora Core 1. This may change soon. Regards, Mike -----Original Message----- From: Dave Phillips |
Date | 2005-10-13 18:13 |
From | Dave Phillips |
Subject | Re: CsoundVST problem |
Greetings: Copying _CsoundVST.so to /usr/lib solved the problem. I'll add /usr/local/lib to LD_LIBRARY_PATH too. Thanks for the help ! Best, dp Michael Gogins wrote: >I'll do another Linux build when I can, either tonight or early next week. Perhaps your LD_LIBRARY_PATH also needs to be updated. > >However, currently I only test on Fedora Core 1. This may change soon. > >Regards, >Mike > >-----Original Message----- >From: Dave Phillips |
Date | 2005-10-13 20:05 |
From | Alan Peter Fitch |
Subject | Re: CsoundVST problem |
On Thu, 2005-10-13 at 13:13 -0400, Dave Phillips wrote: > Greetings: > > Copying _CsoundVST.so to /usr/lib solved the problem. I'll add > /usr/local/lib to LD_LIBRARY_PATH too. > > Thanks for the help ! > Greetings from a "lurker"... I'll bet you know this Dave, but you shouldn't have to add /usr/local/lib to LD_LIBRARY_PATH - that's a bit of a hack. What is supposed to happen is that /etc/ld.so.conf contains a list of paths and then keeps a cache of library files. To update the cache, you should run (as root) /sbin/ldconfig Of course you need to check that /usr/local/lib is in /etc/ld.so.conf kind regards Alan P.S. As I write this, I am getting a horrible sense of doubt over whether what I've said is correct :-) If in doubt, do man ldconfig... -- Alan Fitch (at home...) |
Date | 2005-10-17 14:13 |
From | Dave Phillips |
Subject | Re: CsoundVST problem |
Hi Alan: Yes, I had learned that LD_LIBRARY_PATH was always something of a last resort. I already added /usr/local/lib to ld.so.conf but still got no joy trying to instantiate CsoundVST. Linking it to /usr/lib also didn't work, but copying it to /usr/lib did, and that obviates the need for LD_LIBRARY_PATH. I'm not into the codebase very deeply these days, but if /usr/lib is hard-coded somewhere perhaps it ought not be ? Best, dp Alan Peter Fitch wrote: >On Thu, 2005-10-13 at 13:13 -0400, Dave Phillips wrote: > > >>Greetings: >> >> Copying _CsoundVST.so to /usr/lib solved the problem. I'll add >>/usr/local/lib to LD_LIBRARY_PATH too. >> >> Thanks for the help ! >> >> >> > >Greetings from a "lurker"... > >I'll bet you know this Dave, but you shouldn't have to >add /usr/local/lib to LD_LIBRARY_PATH - that's a bit of a hack. What is >supposed to happen is that /etc/ld.so.conf contains a list of paths and >then keeps a cache of library files. To update the cache, you should run >(as root) > >/sbin/ldconfig > >Of course you need to check that /usr/local/lib is in /etc/ld.so.conf > >kind regards > > >Alan > >P.S. As I write this, I am getting a horrible sense of doubt over >whether what I've said is correct :-) If in doubt, do man ldconfig... > > > |