[Bug c++/27876] New: Getting an error when building GCC 4.1.1

2006-06-02 Thread razin at avaya dot com
signedTo: unassigned at gcc dot gnu dot org ReportedBy: razin at avaya dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27876

[Bug target/27876] Getting an error when building GCC 4.1.1

2006-06-02 Thread razin at avaya dot com
--- Comment #2 from razin at avaya dot com 2006-06-02 15:55 --- Subject: RE: Getting an error when building GCC 4.1.1 If you do not mind can you explain a little bit in details the difference between FSF and HJL binutils. Thanks! -Original Message- From: pinskia at gcc dot

[Bug target/27876] Getting an error when building GCC 4.1.1

2006-06-02 Thread razin at avaya dot com
--- Comment #4 from razin at avaya dot com 2006-06-02 15:59 --- Subject: RE: Getting an error when building GCC 4.1.1 Thanks! I will make a note of that. Sergey -Original Message- From: pinskia at gcc dot gnu dot org [mailto:[EMAIL PROTECTED] Sent: Friday, June 02, 2006

[Bug objc++/27248] FAIL: obj-c++.dg/encode-3.mm (test for excess errors)

2007-10-03 Thread razin at avaya dot com
--- Comment #2 from razin at avaya dot com 2007-10-03 16:44 --- (In reply to comment #1) > > *** This bug has been marked as a duplicate of 27232 *** > Hello! I am currently experiencing the same problem when using 4.2.1. There is not particular description if this bug is

[Bug c++/33660] gettid has not been declared

2007-10-04 Thread razin at avaya dot com
--- Comment #1 from razin at avaya dot com 2007-10-04 18:35 --- Created an attachment (id=14296) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14296&action=view) test case -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33660

[Bug c++/33660] New: gettid has not been declared

2007-10-04 Thread razin at avaya dot com
Hello! Upgraded to gcc 4.2.1 and ran into a following issue: test case: #include #include #include #include #include // Declare the gettid syscall. _syscall0(pid_t, gettid); int main() { std::cout<<"Test for gettid: "

[Bug c++/33660] gettid has not been declared

2007-10-04 Thread razin at avaya dot com
--- Comment #4 from razin at avaya dot com 2007-10-04 18:46 --- (In reply to comment #3) > Why should gettid be in namespace std? It's not a standard C++ function, > so the header file declares it to be in the global namespace. > > W. > (In reply to comment #3) &g

[Bug c++/33660] gettid has not been declared

2007-10-04 Thread razin at avaya dot com
--- Comment #5 from razin at avaya dot com 2007-10-04 19:37 --- Ok. That's just the test. I can remove namespace completely: #include #include #include int main() { gettid(); return 0; } Same result. Actually I figured it will bring up questions, sorry --