[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Segmentation fault on co

From: Stefan Sperling <stsp_at_elego.de>
Date: Thu, 8 Jul 2010 12:44:54 +0200

On Thu, Jul 08, 2010 at 08:06:18AM +0200, Onno van der Straaten wrote:
> svn co https://myrepos/svn/project1 /home/ostraaten/project1 -N
> causes
> Segmentation fault
>
> My repos is Subversion version 1.6.9 (r901367)
> I created my client from the trunk this morning revision 961534.

Try neon instead of serf:
  echo 'http-library = neon' >> ~/.subversion/servers

That usually fixes this for me (ra_serf and serf devs know
about the crash I am seeing and have the backtrace).

To find out if you have the same problem with serf, run Subversion's
configure script with the --enable-maintainer-mode option and recompile
all of svn to get debugging symbols:
  make clean
  ./configure ---enable-maintainer-mode ...
  make && make install
  
Then run svn up within gdb:
 gdb svn
 run co https://myrepos/svn/project1 /home/ostraaten/project1 -N
 # it will crash
 bt

Post the output of gdb's bt command here.

> I was warned for segmentation fault with regards to the way I set
> LD_LIBRARY_PATH. I used ldconfig when I compiled my first client, I
> didn't know at the time that I shouldn't have done that. Is the
> problem related to use of ldconfig? Can I undo what I have done with
> ldconfig? How?
>
> Onno
Received on 2010-07-08 12:45:59 CEST

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.