Re: Where is std::copy_n?

2010-01-17 Thread Roman Werpachowski
Oh, I didn't notice this bit. That changes things. Roman 2010/1/17 Václav Haisman : > Roman Werpachowski wrote, On 17.1.2010 15:22: >> Hi, >> >> The cygwin C++ library does not seem to implement std::copy_n >> (http://www.sgi.com/tech/stl/copy_n.html) Why? >

Re: Where is std::copy_n?

2010-01-17 Thread Roman Werpachowski
Thanks. Roman On Sun, Jan 17, 2010 at 2:43 PM, Dave Korn wrote: > Roman Werpachowski wrote: >> Hi, >> >> The cygwin C++ library does not seem to implement std::copy_n >> (http://www.sgi.com/tech/stl/copy_n.html) Why? > >  It was only added after the 4.3 release

Where is std::copy_n?

2010-01-17 Thread Roman Werpachowski
Hi, The cygwin C++ library does not seem to implement std::copy_n (http://www.sgi.com/tech/stl/copy_n.html) Why? Regards, Roman Werpachowski -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html

Problem with Cygwin-beta gdb

2009-11-01 Thread Roman Werpachowski
T=/opt/ gcc-tools/bin/ld.exe --with-ecj-jar=/usr/share/java/ecj.jar Thread model: posix gcc version 4.3.4 20090804 (release) 1 (GCC) Kind regards, Roman Werpachowski -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http:

Re: Segmentation fault when exception is thrown or assertion fails [g++/gcc]

2009-07-05 Thread Roman Werpachowski
had > already returned from main.) Thanks to you and Chris. Regards, Roman Werpachowski -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: Segmentation fault when exception is thrown or assertion fails [g++/gcc]

2009-07-05 Thread Roman Werpachowski
genuine errors? "gdb -c" cannot load it. Regards, Roman Werpachowski -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: Segmentation fault when exception is thrown or assertion fails [g++/gcc]

2009-07-05 Thread Roman Werpachowski
program crashes anyway, so it was never a big enough priority for anyone to > fix when 1.5 series was still live. > >  Tried 1.7 yet?  :-)  It's pretty good! Tried, works as advertised. Thank you. Regards, Roman Werpachowski -- Problem reports: http://cygwin.com/problems.html

Re: Segmentation fault when exception is thrown or assertion fails [g++/gcc]

2009-07-05 Thread Roman Werpachowski
On Sun, Jul 5, 2009 at 3:28 PM, Dave Korn wrote: > Roman Werpachowski wrote: >> On Sun, Jul 5, 2009 at 1:50 PM, Dave > >  Please don't quote the "From:" address in your email. Extremely sorry, won't happen again. BTW, couldn't the mailing software automati

Re: Segmentation fault when exception is thrown or assertion fails [g++/gcc]

2009-07-05 Thread Roman Werpachowski
y anything would have > corrupted the stack, so either there's a real bug or perhaps just some kind of > frame-pointer optimisation that confuses the unwind routine. I was building my test programs without any optimizations, but with -g option set. Regards, Roman Werpachowski cygcheck

Re: Segmentation fault when exception is thrown or assertion fails [g++/gcc]

2009-07-04 Thread Roman Werpachowski
(p robably corrupted stack) Apologies for not responding correctly to Chris Faylor, but my mailing list skills have gone rusty. I will respond to next messages correctly. Regards, Roman Werpachowski -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com

Segmentation fault when exception is thrown or assertion fails [g++/gcc]

2009-07-04 Thread Roman Werpachowski
int main() { throw new std::runtime_error("Just because"); // the same with assert(false); } I am using gcc-3.4.4. I understand that Cygwin defaults to dumping the stack trace, but why the message about segmentation fault? It confuses the hell out of me. Regards, Roman We