Re: [Mingw-w64-public] Thoughts on supporting the C++11 thread library on Windows

2012-05-05 Thread Gabriel Dos Reis
Including the mingw64 project about this. On Sat, May 5, 2012 at 5:59 PM, Jonathan Wakely wrote: > For GCC 4.7 I enabled most of (without timed mutexes) on Mac > OS X by making the _GLIBCXX_HAS_GTHREADS macro more fine-grained.  I > think we could quite easily do the same again for the win32 thr

Re: [Mingw-w64-public] rubenvb GCC 4.7.0 release build

2012-05-05 Thread Chris Sutcliffe
HI Ruben, On 5 May 2012 06:00, Ruben Van Boxem wrote: > 2012/5/4 Chris Sutcliffe > >> Would it be possible for you to create a 32-bit to 64-bit cross >> compiler (i.e. a compiler that runs on 32-bit Windows that creates >> binaries for 64-bit Windows)? > > > I have uploaded builds for 32-bit Wind

Re: [Mingw-w64-public] winpthreads-api and GetLastError/SetLastError

2012-05-05 Thread niXman
2012/5/5 niXman : > 2012/5/5 Kai Tietz: >> Could somebody do tests if the LastError state can be really changed? > > About what tests there is a speech? I suppose that not only pthread_getspecific() changes last_error. As I already spoke earlier, winpthreads-api shan't change last_error value beca

Re: [Mingw-w64-public] winpthreads-api and GetLastError/SetLastError

2012-05-05 Thread niXman
2012/5/5 Kai Tietz: > Could somebody do tests if the LastError state can be really changed? About what tests there is a speech? -- Regards,   niXman -- Live Security Virtual Conference Exclusive live event will cover a

Re: [Mingw-w64-public] rubenvb GCC 4.7.0 release build

2012-05-05 Thread Ruben Van Boxem
2012/5/4 Chris Sutcliffe > Hi Ruben, > > On 29 April 2012 16:16, Ruben Van Boxem wrote: > > I am uploading 4.7.0 at the time of writing. I plan on building 4.6.3 as > > well, and perhaps a 4.5.3. Unfortunately, I am still unable to build a > > native ada compiler/library. As before, these are now

Re: [Mingw-w64-public] winpthreads-api and GetLastError/SetLastError

2012-05-05 Thread Kai Tietz
2012/5/5 Ozkan Sezer : > On 5/4/12, niXman wrote: >> Hi, >> >> This simple code change the last error which sometimes is not allowed: >>> #include >>> int main() { >>>      SetLastError(33); >>>      pthread_getspecific(0); >>>      return GetLastError(); >>> } >>> >>> $ gcc test.c -otest >>> $ .