public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/14618] New: Cannot compile test_thread.cpp from boost
@ 2004-03-17  9:38 schmid at snake dot iap dot physik dot tu-darmstadt dot de
  2004-03-17 13:52 ` [Bug c++/14618] " bangerth at dealii dot org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: schmid at snake dot iap dot physik dot tu-darmstadt dot de @ 2004-03-17  9:38 UTC (permalink / raw)
  To: gcc-bugs

The following code s.C, reduced from the original file libs/thread/test/
test_thread.cpp included in current boost repository, is rejected by gcc 3.4, 
but accepted by gcc 3.3. I have not investigated but given the error messages I 
guess this problem is also responsible for the failure of the libs/python/test/
embedding.cpp test. This looks like a regression to me. 
 
source code s.C  
 
namespace boost { 
class noncopyable 
{ 
 protected: 
    noncopyable() {} 
    ~noncopyable() {} 
 private: 
    noncopyable( const noncopyable& ); 
    const noncopyable& operator=( const noncopyable& ); 
}; 
 
 
class thread : private noncopyable 
{ 
public: 
    bool operator==(const thread& other) const; 
}; 
} // namespace boost 
 
 
void comparison_thread(boost::thread* parent) 
{ 
    boost::thread thrd; 
    if (thrd == boost::thread()) ; 
} 
 
g++ -v -W -Wall -c s.C  
Reading specs from /usr/local/lib/gcc/i686-pc-linux-gnu/3.4.0/specs 
Configured with: ../gcc/configure --enable-threads=posix --enable-languages=c,c
++,f77,objc --enable-__cxa_atexit --enable-libstdcxx-debug 
Thread model: posix 
gcc version 3.4.0 20040313 (prerelease) 
 /usr/local/libexec/gcc/i686-pc-linux-gnu/3.4.0/cc1plus -quiet -v -D_GNU_SOURCE 
s.C -quiet -dumpbase s.C -mtune=pentiumpro -auxbase s -W -Wall -version -o /
tmp/ccRINl8i.s 
ignoring nonexistent directory "NONE/include" 
ignoring nonexistent directory "/usr/local/lib/gcc/
i686-pc-linux-gnu/3.4.0/../../../../i686-pc-linux-gnu/include" 
#include "..." search starts here: 
#include <...> search starts here: 
 /usr/local/lib/gcc/i686-pc-linux-gnu/3.4.0/../../../../include/c++/3.4.0 
 /usr/local/lib/gcc/i686-pc-linux-gnu/3.4.0/../../../../include/c++/3.4.0/
i686-pc-linux-gnu 
 /usr/local/lib/gcc/i686-pc-linux-gnu/3.4.0/../../../../include/c++/3.4.0/
backward 
 /usr/local/include 
 /usr/local/lib/gcc/i686-pc-linux-gnu/3.4.0/include 
 /usr/include 
End of search list. 
GNU C++ version 3.4.0 20040313 (prerelease) (i686-pc-linux-gnu) 
	compiled by GNU C version 3.4.0 20040313 (prerelease). 
GGC heuristics: --param ggc-min-expand=64 --param ggc-min-heapsize=64274 
s.C: In copy constructor `boost::thread::thread(const boost::thread&)': 
s.C:8: error: `boost::noncopyable::noncopyable(const boost::noncopyable&)' is 
private 
s.C:24: error: within this context 
s.C: In function `void comparison_thread(boost::thread*)': 
s.C:22: warning: unused parameter 'parent'

-- 
           Summary: Cannot compile test_thread.cpp from boost
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: schmid at snake dot iap dot physik dot tu-darmstadt dot
                    de
                CC: gcc-bugs at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14618


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2004-07-13 17:02 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-17  9:38 [Bug c++/14618] New: Cannot compile test_thread.cpp from boost schmid at snake dot iap dot physik dot tu-darmstadt dot de
2004-03-17 13:52 ` [Bug c++/14618] " bangerth at dealii dot org
2004-03-17 14:37 ` giovannibajo at libero dot it
2004-03-17 15:08 ` gdr at integrable-solutions dot net
2004-03-17 15:11 ` gdr at integrable-solutions dot net
2004-03-17 22:54 ` [Bug c++/14618] Document copy constructor constraints in binding rvalues to references giovannibajo at libero dot it
2004-03-17 23:22 ` gdr at integrable-solutions dot net
2004-03-21  1:16 ` giovannibajo at libero dot it
2004-03-29 18:24 ` pinskia at gcc dot gnu dot org
2004-07-13 17:02 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).