[Bug c++/57163] Link failure with thread_local

2014-01-30 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57163

Richard Biener rguenth at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Known to work||4.9.0
 Resolution|--- |FIXED
  Known to fail||4.8.2

--- Comment #5 from Richard Biener rguenth at gcc dot gnu.org ---
Works with 4.9 for me.


[Bug c++/57163] Link failure with thread_local

2013-12-01 Thread conradsand.arma at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57163

Conrad conradsand.arma at gmail dot com changed:

   What|Removed |Added

 CC||conradsand.arma at gmail dot 
com

--- Comment #4 from Conrad conradsand.arma at gmail dot com ---
Confirmed for gcc 4.8.2


[Bug c++/57163] Link failure with thread_local

2013-06-14 Thread meyerm at fs dot tum.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57163

Marcel Meyer meyerm at fs dot tum.de changed:

   What|Removed |Added

 CC||meyerm at fs dot tum.de

--- Comment #2 from Marcel Meyer meyerm at fs dot tum.de ---
Confirmed for gcc 4.8.1.


[Bug c++/57163] Link failure with thread_local

2013-06-14 Thread meyerm at fs dot tum.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57163

--- Comment #3 from Marcel Meyer meyerm at fs dot tum.de ---
Please have a look at bug #55800 .


[Bug c++/57163] Link failure with thread_local

2013-05-03 Thread paolo.carlini at oracle dot com


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



Paolo Carlini paolo.carlini at oracle dot com changed:



   What|Removed |Added



Summary|Link failure with   |Link failure with

   |thread_local|thread_local

   |std::default_random_engine  |



--- Comment #1 from Paolo Carlini paolo.carlini at oracle dot com 2013-05-04 
00:07:33 UTC ---

In any case the actual std::default_random_engine doesn't play any special

role: the same error happens including, as test.h, something like



namespace std

{

  struct default_random_engine

  {

default_random_engine() { }



int operator()() { return 1; }

  };

}