Re: subversion 1.2.0 "make check" does not operate correctly under certain circumstances
From: Philip Martin <philip_at_codematters.co.uk>
Date: 2005-05-28 03:26:40 CEST
Donald R Laster Jr <laster@dlaster.com> writes:
> The 1.2.0 "make check" used the wrong libraries if another version is
I think this is because you configured subversion using --enable-dso.
You can verify that the build is using libraries from within the build
$ ldd subversion/clients/cmdline/.libs/lt-svn | grep libsvn
This should show the libraries being picked up from the build area.
I think official libtool way to run the command would be:
Since you used --enable-dso additional libraries get loaded at
$ strace -etrace=open subversion/clients/cmdline/.libs/lt-svn 2>&1 | grep libsvn_ra-1
I expect this will show libraries being loaded from outside the build
/path/to/build/dir/subversion/libsvn_ra_local/.libs
to LD_LIBRARY_PATH and repeat the strace command to see if it works.
Using LD_LIBRARY_PATH didn't work on --enable-dso libraries the last
-- Philip Martin --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org For additional commands, e-mail: dev-help@subversion.tigris.orgReceived on Sat May 28 03:27:29 2005 |
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.