From mboxrd@z Thu Jan 1 00:00:00 1970 From: Russ Allbery To: gdb@sourceware.cygnus.com Subject: Re: cvsup & sourceware repositories? Date: Sat, 01 Apr 2000 00:00:00 -0000 Message-id: References: X-SW-Source: 2000-q1/msg00730.html Jim Kingdon writes: > I don't really know cvsup well enough to know just how it compares, but > we do have anonymous rsync of the CVS repository - see > http://sourceware.cygnus.com/sourceware/ for details. It's roughly equivalent. CVSup may send less information (and hence be more efficient) than rsync since it understands CVS repository structure, and it produces slightly nicer diagnostic output, but for the most part either are as good. -- Russ Allbery (rra@stanford.edu) < http://www.eyrie.org/~eagle/ > >From dan@cgsoftware.com Sat Apr 01 00:00:00 2000 From: Daniel Berlin To: Andrew Cagney Cc: Richard Chan , gdb@sourceware.cygnus.com Subject: Re: GDB supporting namespace std? Date: Sat, 01 Apr 2000 00:00:00 -0000 Message-id: References: <38A7E3AD.5BE72E9C@cygnus.com> X-SW-Source: 2000-q1/msg00266.html Content-length: 904 >>>>> "AC" == Andrew Cagney writes: AC> Chan Shih-Ping wrote: >> >> Does GDB support the use of namespace std::, >> code compiled with -fhonor-std (and an >> appropriately compiled libgcc.a) and using >> std::string s. >> >> However attempts at using >> print s.size >> >> gives messages like >> Couldn't find method string::size() AC> Given that no one has responded, I'd suspect the answer to be no. AC> It sounds like a good problem to peruse. Depends on how you look at it. With DWARF2, and my overload resolution patch, this should work perfectly fine. With STABS, you need a patch i'm working on as we speak (It works, i'm just trying to see if their is anything i'm missing). Assuming mangling and everything is working fine, namespaces should have no problem. If they do, i'll make them have no problems. :) AC> Andrew