Re: isnan() causes segfault

2006-12-01 Thread Eric Lilja
Lev Bishop skrev: On 11/30/06, Lev Bishop wrote: Something for the newlib folks to deal with, I suppose. And they took my suggestion: http://sources.redhat.com/ml/newlib/2006/msg00938.html Lev Thanks for debugging and reporting this to the newlib team, Mr Bishop! / E -- Unsubscribe inf

Re: isnan() causes segfault

2006-11-30 Thread Lev Bishop
On 11/30/06, Lev Bishop wrote: Something for the newlib folks to deal with, I suppose. And they took my suggestion: http://sources.redhat.com/ml/newlib/2006/msg00938.html Lev -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.

Re: isnan() causes segfault

2006-11-30 Thread Lev Bishop
On 11/30/06, Lev Bishop wrote: On 11/30/06, Lev Bishop wrote: > On 11/30/06, Eric Lilja wrote: > > If compiled with: > > $ g++ -Wall -Wextra -std=c++98 -pedantic -g isnantest.cpp -o run > > (those are the flags we have been using in this course). > > But it doesn't stackdump if compiled simply wi

Re: isnan() causes segfault

2006-11-30 Thread Lev Bishop
On 11/30/06, Lev Bishop wrote: On 11/30/06, Eric Lilja wrote: > If compiled with: > $ g++ -Wall -Wextra -std=c++98 -pedantic -g isnantest.cpp -o run > (those are the flags we have been using in this course). > But it doesn't stackdump if compiled simply with: > $ make isnantest > g++ isnantes

Re: isnan() causes segfault

2006-11-30 Thread Lev Bishop
On 11/30/06, Eric Lilja wrote: If compiled with: $ g++ -Wall -Wextra -std=c++98 -pedantic -g isnantest.cpp -o run (those are the flags we have been using in this course). But it doesn't stackdump if compiled simply with: $ make isnantest g++ isnantest.cpp -o isnantest I was able to reprod

RE: isnan() causes segfault

2006-11-30 Thread Dave Korn
On 30 November 2006 13:26, Eric Lilja wrote: > The following program stackdumps: > #include > > int > main() > { > std::isnan(3); > } > If compiled with: > $ g++ -Wall -Wextra -std=c++98 -pedantic -g isnantest.cpp -o run > (those are the flags we have been using in this course). Can't rep

Re: isnan() causes segfault

2006-11-30 Thread Tim Prince
[EMAIL PROTECTED] wrote: Hello, I'm working as a laborations assistant in a C++ course. The students are using Sun workstations and gcc (well, g++) version 3.4.6 to do the labs. I don't particularly like these workstations so I have cygwin installed on my laptop and I use it compile and test th