Re: [Mingw-w64-public] [Poll] Move to git

2014-05-16 Thread JonY
On 5/9/2014 21:52, JonY wrote: Hi all, You may also use the other thread for further discussion, please keep this thread for votes only. For mingw-w64 developers, state your SF ID; for the registered voters, simply reply with the same email address you registered with. [ ] Yes, move to

Re: [Mingw-w64-public] [Poll] Move to git

2014-05-16 Thread Kai Tietz
Hi JonY, 2014-05-16 12:36 GMT+02:00 JonY jo...@users.sourceforge.net: On 5/9/2014 21:52, JonY wrote: Hi all, You may also use the other thread for further discussion, please keep this thread for votes only. For mingw-w64 developers, state your SF ID; for the registered voters, simply

[Mingw-w64-public] git migration

2014-05-16 Thread JonY
Hi, Git write access is now granted to developers, if you had SVN write access, you now have git write access too. SVN now read-only. For those new to git, please take a moment to read up on https://sourceforge.net/apps/trac/mingw-w64/wiki/git. It is still a stub, feel free to ask questions.

Re: [Mingw-w64-public] [Poll] Move to git

2014-05-16 Thread JonY
On 5/16/2014 20:07, Kai Tietz wrote: The point, which isn't completed IMO, is that we still need to specify how our process for patch-sending, review, and actually acceptance shall work with git. As long as this isn't made clear, I still set a veto to the move from SVN to GIT. Basically,

Re: [Mingw-w64-public] [PATCH] Update OpenGL headers

2014-05-16 Thread Jon TURNEY
On 06/05/2014 14:33, LRN wrote: On 06.05.2014 17:26, Kai Tietz wrote: 2014-05-06 15:01 GMT+02:00 LRN: Patch is of course ok. I just wanted a note on mailing-list that you've update to current (which version?). OpenGL 4.4, i think. In my RSS feed there's an entry about OpenGL 4.4 dated

[Mingw-w64-public] Getting started building examples that use std::thread

2014-05-16 Thread Suresh Govindachar
Hello, The page http://mingw-w64.sourceforge.net/download.php says: C11/C++11 Threading: C11 and C++11 have added threading support at the language level; this requires the winpthreads library which comes with the toolchains and changes little for users not relying on it. 1) Am I correct in

Re: [Mingw-w64-public] Getting started building examples that use std::thread

2014-05-16 Thread niXman
Suresh Govindachar 2014-05-17 03:45: Hello, Hi, The page http://mingw-w64.sourceforge.net/download.php says: C11/C++11 Threading: C11 and C++11 have added threading support at the language level; this requires the winpthreads library which comes with the toolchains and changes little for

Re: [Mingw-w64-public] Getting started building examples that use std::thread

2014-05-16 Thread Suresh Govindachar
On 5/16/2014 5:45 PM, niXman wrote: Suresh Govindachar 2014-05-17 03:45: Hello, Hi, The page http://mingw-w64.sourceforge.net/download.php says: [...] 2) When I tried to use g++ from x86_64-4.8.2-release-posix-seh-rt_v3-rev4.7z (x86_64-w64-mingw32-g++.exe

Re: [Mingw-w64-public] Getting started building examples that use std::thread

2014-05-16 Thread Óscar Fuentes
Suresh Govindachar sgovindac...@yahoo.com writes: Upgraded to 4.9.0 (x86_64-posix-seh-rev1, Built by MinGW-W64 project). Tried the above command and the one below -- both give the same pop-up error message from cc1plus.exe about not finding libwinpthread-1.dll: [snip] Perhaps I

Re: [Mingw-w64-public] [puzzling work-around for] Getting started building examples that use std::thread

2014-05-16 Thread Suresh Govindachar
On 5/16/2014 5:45 PM, niXman wrote: Suresh Govindachar 2014-05-17 03:45: [...] 2) When I tried to use g++ from x86_64-4.8.2-release-posix-seh-rt_v3-rev4.7z (x86_64-w64-mingw32-g++.exe (x86_64-posix-seh-rev4, Built by MinGW-W64 project) 4.8.2), I got the message about missing

Re: [Mingw-w64-public] [puzzling work-around for] Getting started building examples that use std::thread

2014-05-16 Thread niXman
Try this command line: x86_64-w64-mingw32-g++.exe \ -D_WIN64 \ -Wall \ -Wextra \ -Werror \ -std=c++11 \ -O3 \ -static \ mt.cc -o mt.exe I have no problem using the command line above. -- Regards, niXman

Re: [Mingw-w64-public] Getting started building examples that use std::thread

2014-05-16 Thread Suresh Govindachar
On 5/16/2014 6:52 PM, Óscar Fuentes wrote: Suresh Govindachar sgovindac...@yahoo.com writes: Upgraded to 4.9.0 (x86_64-posix-seh-rev1, Built by MinGW-W64 project). Tried the above command and the one below -- both give the same pop-up error message from cc1plus.exe about not finding