[Mingw-w64-public] [PATCH] Add a missing leave_global_cs() call on r6411

2013-12-11 Thread Dongsheng Song
~/vcs/svn/mingw-w64/trunk/mingw-w64-libraries/winpthreads/src$ svn diff . Index: spinlock.c === --- spinlock.c (revision 6412) +++ spinlock.c (working copy) @@ -114,7 +114,10 @@ spin = (spin_t*)*lock; if (spin->owner && spin->

Re: [Mingw-w64-public] Installing gcc 4.8

2013-12-11 Thread John E. / TDM
On 12/3/2013 4:59 AM, Antonio Caruso wrote: > So, it's just this particular build that it's not working, could you > point me to a build that it's easy to install, and works without > problems. Hi Antonio, You may want to consider TDM-GCC[1]. It is a build of GCC patched for Windows-friendliness

Re: [Mingw-w64-public] Winpthreads library issue with dwarf toolchain

2013-12-11 Thread JonY
On 12/12/2013 02:32, Kai Tietz wrote: > Sorry for the delay. Patch is ok. Does somebody would apply it to > trunk (and if JonY doesn't object also to v3-branch)? > > Thanks, > Kai > Done, trunk r6411 and stable/v3.x r6412. signature.asc Description: OpenPGP digital signature -

Re: [Mingw-w64-public] Winpthreads library issue with dwarf toolchain

2013-12-11 Thread Kai Tietz
Sorry for the delay. Patch is ok. Does somebody would apply it to trunk (and if JonY doesn't object also to v3-branch)? Thanks, Kai -- Rapidly troubleshoot problems before they affect your business. Most IT organizatio

Re: [Mingw-w64-public] Installing gcc 4.8

2013-12-11 Thread Adrien Nader
Also please note that the best way to get the expected content on the download page is to send (me or jon_y probably?) an update to the corresponding "web/htdocs/downloads/foo.php" file in the SVN. The main rule is to maintain coherency with other elements on the page; if deeper changes are wanted

Re: [Mingw-w64-public] Winpthreads library issue with dwarf toolchain

2013-12-11 Thread Alexey Pavlov
ping? 2013/12/8 Fanael Linithien : > Ping? > > -- > Sponsored by Intel(R) XDK > Develop, test and display web and hybrid apps with a single code base. > Download it for free now! > http://pubads.g.doubleclick.net/gampad/cl

Re: [Mingw-w64-public] Installing gcc 4.8

2013-12-11 Thread Alexpux
11 дек. 2013 г., в 18:54, Ruben Van Boxem написал(а): > 2013/12/11 niXman > Ruben Van Boxem 2013-12-11 18:12: > > Anyways, as I said these are old builds that had their inception in me > > wanting a toolchain. Currently there are various build projects, > > including > > mingw-builds that are h

Re: [Mingw-w64-public] Installing gcc 4.8

2013-12-11 Thread Ruben Van Boxem
2013/12/11 niXman > Ruben Van Boxem 2013-12-11 18:12: > > Anyways, as I said these are old builds that had their inception in me > > wanting a toolchain. Currently there are various build projects, > > including > > mingw-builds that are hosted on the MinGW-w64 Downloads > > page

Re: [Mingw-w64-public] Installing gcc 4.8

2013-12-11 Thread niXman
Ruben Van Boxem 2013-12-11 18:12: > Anyways, as I said these are old builds that had their inception in me > wanting a toolchain. Currently there are various build projects, > including > mingw-builds that are hosted on the MinGW-w64 Downloads > page.

Re: [Mingw-w64-public] Installing gcc 4.8

2013-12-11 Thread Ruben Van Boxem
2013/12/3 Antonio Caruso > Dear Mingw-W64 community > > I'm a CS professor in Italy (University of Salento), I'll teach in the > period March-July a programming course for the undergrads in Mathematics, > and I usually teach C with mingw. > > I'd like to switch to mingw-w64 in particular for the

[Mingw-w64-public] Inconsistency between stdio.h and wchar.h re: _iob

2013-12-11 Thread Yaron Keren
Hello, stdio.h:82-96 #ifndef _STDIO_DEFINED #ifdef _WIN64 _CRTIMP FILE *__cdecl __iob_func(void); #define _iob __iob_func() #else #ifdef _MSVCRT_ extern FILE _iob[]; /* A pointer to an array of FILE */ #define __iob_func() (_iob) #else extern FILE (* __MINGW_IMP_SYMBOL(_iob))[]; /* A pointer t

[Mingw-w64-public] Installing gcc 4.8

2013-12-11 Thread Antonio Caruso
Dear Mingw-W64 community I'm a CS professor in Italy (University of Salento), I'll teach in the period March-July a programming course for the undergrads in Mathematics, and I usually teach C with mingw. I'd like to switch to mingw-w64 in particular for the better support for C99 features. So, I

[Mingw-w64-public] [ANN] Win-builds 1.3-beta3

2013-12-11 Thread Adrien Nader
Hi, The 1.3-beta3 release of win-builds.org is now available. This project creates a system to build and distribute for Windows from almost any system: *native* Windows, MSYS*, Cygwin and Linux. Everything is done through a portable package manager for easy installation, maintenance and update.

Re: [Mingw-w64-public] Microsoft MPI for MinGW-w64

2013-12-11 Thread Adrien Nader
On Wed, Dec 11, 2013, Ruben Van Boxem wrote: > 2013/12/11 Adrien Nader > > > HI, > > > > On Sun, Nov 17, 2013, Alexander Shukaev wrote: > > > Hello, > > > > > > I'd like to share something with the project. I had to do some MPI-based > > > development on Windows lately. Since both MPICH and OpenM

Re: [Mingw-w64-public] Microsoft MPI for MinGW-w64

2013-12-11 Thread Ruben Van Boxem
2013/12/11 Adrien Nader > HI, > > On Sun, Nov 17, 2013, Alexander Shukaev wrote: > > Hello, > > > > I'd like to share something with the project. I had to do some MPI-based > > development on Windows lately. Since both MPICH and OpenMPI are > officially > > discontinued for Windows, the only alte

Re: [Mingw-w64-public] Microsoft MPI for MinGW-w64

2013-12-11 Thread Alexander Shukaev
Hello Adrien, Yes, the link you provided is very close to what was done. So essentially, nothing serious, just a few modifications in a header file, so that it's compatible with both MSVC and GCC. I guess it is perfectly fine to do that. I've never released it by my name or stole anybody's rights.

Re: [Mingw-w64-public] Microsoft MPI for MinGW-w64

2013-12-11 Thread Adrien Nader
HI, On Sun, Nov 17, 2013, Alexander Shukaev wrote: > Hello, > > I'd like to share something with the project. I had to do some MPI-based > development on Windows lately. Since both MPICH and OpenMPI are officially > discontinued for Windows, the only alternative is to use Microsoft MPI from > HPC

Re: [Mingw-w64-public] Ekiga also uses mingw-w64

2013-12-11 Thread Adrien Nader
On Thu, Nov 28, 2013, Eugen Dedu wrote: > Ekiga program also uses mingw-w64, cf. > https://git.gnome.org/browse/ekiga/tree/win32/Makefile I've update the website to include it in the project list. Only 60 (random) projects are now shown so there is a 5% chance it won't be seen. (that section of