You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Blair Zajac <bl...@orcaware.com> on 2002/12/10 01:28:35 UTC

Re: svn commit: rev 4072 - trunk/subversion/bindings/swig

Any help in getting the generated *.so's to find would be much
appreciated:

% ldd subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/*.so
subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/_client.so:
        libsvn_client-1.so.0 => not found
        libsvn_swig_py-1.so.0 => not found
        libswigpy.so => not found
        libc.so.6 => /lib/i686/libc.so.6 (0x42000000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/_delta.so:
        libsvn_delta-1.so.0 => not found
        libsvn_swig_py-1.so.0 => not found
        libswigpy.so => not found
        libc.so.6 => /lib/i686/libc.so.6 (0x42000000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
.
.
.

Best,
Blair

-- 
Blair Zajac <bl...@orcaware.com>
Plots of your system's performance - http://www.orcaware.com/orca/

sussman@tigris.org wrote:
> 
> Author: sussman
> Date: 2002-12-09 18:59:15 -0600 (Mon, 09 Dec 2002)
> New Revision: 4072
> 
> Modified:
>    trunk/subversion/bindings/swig/INSTALL
> Log:
> * swig/INSTALL:  add more build tips and FAQ

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 4072 - trunk/subversion/bindings/swig

Posted by Eric Gillespie <ep...@pretzelnet.org>.
Blair Zajac <bl...@orcaware.com> writes:

> Neither of those are ideal solutions.  I like to have the compile
> properly set up that up, but I'll probably edit ld.so.conf.

Add -Wl,-R/path/to/libdir flags to the LDFLAGS environment
variable when running configure.  This will encode RPATH settings
into the binaries so they can find the necessary libraries.

Another less-than-ideal solution is to set the LD_LIBRARY_PATH
environment variable at runtime.

--  
Eric Gillespie <*> epg@pretzelnet.org

Build a fire for a man, and he'll be warm for a day.  Set a man on
fire, and he'll be warm for the rest of his life. -Terry Pratchett

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 4072 - trunk/subversion/bindings/swig

Posted by Blair Zajac <bl...@orcaware.com>.
Daniel Rall wrote:
> 
> Blair Zajac <bl...@orcaware.com> writes:
> 
> > Any help in getting the generated *.so's to find would be much
> > appreciated:
> >
> > % ldd subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/*.so
> > subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/_client.so:
> >         libsvn_client-1.so.0 => not found
> >         libsvn_swig_py-1.so.0 => not found
> >         libswigpy.so => not found
> >         libc.so.6 => /lib/i686/libc.so.6 (0x42000000)
> >         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
> > subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/_delta.so:
> >         libsvn_delta-1.so.0 => not found
> >         libsvn_swig_py-1.so.0 => not found
> >         libswigpy.so => not found
> >         libc.so.6 => /lib/i686/libc.so.6 (0x42000000)
> >         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
> > .
> > .
> > .
> 
> None of mine show up as "not found", but I have my .so's in my linker
> config file, and have run /sbin/ldconfig.
> 
> dlr@despot:svn$ tail -1 /etc/ld.so.conf
> /usr/local/subversion/lib
> 
> Probably also works if you set your LD_LIBRARY_PATH environment
> variable.

Thanks.

Neither of those are ideal solutions.  I like to have the compile
properly set up that up, but I'll probably edit ld.so.conf.

Best,
Blair

-- 
Blair Zajac <bl...@orcaware.com>
Plots of your system's performance - http://www.orcaware.com/orca/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 4072 - trunk/subversion/bindings/swig

Posted by Daniel Rall <dl...@finemaltcoding.com>.
Blair Zajac <bl...@orcaware.com> writes:

> Any help in getting the generated *.so's to find would be much
> appreciated:
> 
> % ldd subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/*.so
> subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/_client.so:
>         libsvn_client-1.so.0 => not found
>         libsvn_swig_py-1.so.0 => not found
>         libswigpy.so => not found
>         libc.so.6 => /lib/i686/libc.so.6 (0x42000000)
>         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
> subversion/bindings/swig/python/build/lib.linux-i686-2.2/svn/_delta.so:
>         libsvn_delta-1.so.0 => not found
>         libsvn_swig_py-1.so.0 => not found
>         libswigpy.so => not found
>         libc.so.6 => /lib/i686/libc.so.6 (0x42000000)
>         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
> .
> .
> .

None of mine show up as "not found", but I have my .so's in my linker
config file, and have run /sbin/ldconfig.

dlr@despot:svn$ tail -1 /etc/ld.so.conf 
/usr/local/subversion/lib

Probably also works if you set your LD_LIBRARY_PATH environment
variable.
-- 

Daniel Rall <dl...@finemaltcoding.com>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org