Re: [Mingw-w64-public] Command Window

2012-05-10 Thread Ruben Van Boxem
Op 11 mei 2012 03:50 schreef "tomdean" het volgende: > > On 5/10/2012 6:00 PM, Luis Lavena wrote: > > Use gcc -mwindows, by default it will create a console application. > > See gcc --target-help > I am using 'g++ -I. -lgdi32 -lcomctl32 -lcomdlg32 .cpp -o > ' > > When I double click on .exe, a co

Re: [Mingw-w64-public] Command Window

2012-05-10 Thread tomdean
On 5/10/2012 6:00 PM, Luis Lavena wrote: > Use gcc -mwindows, by default it will create a console application. > See gcc --target-help I am using 'g++ -I. -lgdi32 -lcomctl32 -lcomdlg32 .cpp -o ' When I double click on .exe, a command window opens then whatever window I create opens. Tom Dean

Re: [Mingw-w64-public] Command Window

2012-05-10 Thread Luis Lavena
On Thu, May 10, 2012 at 9:55 PM, tomdean wrote: > On 5/10/2012 5:52 PM, tomdean wrote: >> Memory came back >> >> One app did not ShowWindow(...) or UpdateWindow(...) >> > Or, maybe the memory left again.  That was not it. > Use gcc -mwindows, by default it will create a console application. See

Re: [Mingw-w64-public] Command Window

2012-05-10 Thread tomdean
On 5/10/2012 5:52 PM, tomdean wrote: > Memory came back > > One app did not ShowWindow(...) or UpdateWindow(...) > Or, maybe the memory left again. That was not it. Tom Dean -- Live Security Virtual Conference Exclusive

[Mingw-w64-public] Command Window

2012-05-10 Thread tomdean
Memory came back One app did not ShowWindow(...) or UpdateWindow(...) Tom Dean -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how I

[Mingw-w64-public] Command Window

2012-05-10 Thread tomdean
I forget the reason When I double click on a .exe, I get a command window plus whatever application window I created. Why? Tom Dean -- Live Security Virtual Conference Exclusive live event will cover all the ways t

Re: [Mingw-w64-public] gcc build stage 2 error

2012-05-10 Thread JonY
On 5/11/2012 03:14, Whitequill Riclo wrote: > On Sun, Feb 19, 2012 at 12:27 AM, Whitequill Riclo >wrote: > >> thanx, I'll give it a look over. >> >> On Sat, Feb 18, 2012 at 7:45 PM, JonY wrote: >> >>> On 2/19/2012 04:40, Whitequill Riclo wrote: where do I find mkbuildroot.mk? >>> >>> In

Re: [Mingw-w64-public] gcc build stage 2 error

2012-05-10 Thread Whitequill Riclo
On Sat, Feb 18, 2012 at 7:45 PM, JonY wrote: > On 2/19/2012 04:40, Whitequill Riclo wrote: > > where do I find mkbuildroot.mk? > > > > In SVN, > > https://mingw-w64.svn.sourceforge.net/svnroot/mingw-w64/experimental/buildsystem > . > > > I am using a Canadian cross compiler: http://www.airs.com/i

Re: [Mingw-w64-public] gcc does not find input file

2012-05-10 Thread David Froger
> Sure, you are using here within cygwin a native gcc. Of course it > doesn't support cygwin's pathname. > If you want to use cygwin, then please use the mingw-w64 package > provided within cygwin's setup. Thanks for your reply! I understand, of course... My first steps with cygwin, sorry... Th

Re: [Mingw-w64-public] gcc does not find input file

2012-05-10 Thread Kai Tietz
2012/5/10 Ruben Van Boxem : > 2012/5/10 Kai Tietz >> >> 2012/5/10 David Froger : >> > Dear all, >> > >> > I'm trying to get starting with mingw64,  and I have problems when >> > passing input >> > file to gcc by absolute path. >> > >> > I've installed Cygwin: >> > $ uname -a >> > CYGWIN_NT-6.1-WOW

Re: [Mingw-w64-public] gcc does not find input file

2012-05-10 Thread Ruben Van Boxem
2012/5/10 Kai Tietz > 2012/5/10 David Froger : > > Dear all, > > > > I'm trying to get starting with mingw64, and I have problems when > passing input > > file to gcc by absolute path. > > > > I've installed Cygwin: > > $ uname -a > > CYGWIN_NT-6.1-WOW64 david-laptop 1.7.14(0.260/5/3) 2012-04-25

Re: [Mingw-w64-public] gcc does not find input file

2012-05-10 Thread Kai Tietz
2012/5/10 David Froger : > Dear all, > > I'm trying to get starting with mingw64,  and I have problems when passing > input > file to gcc by absolute path. > > I've installed Cygwin: > $ uname -a > CYGWIN_NT-6.1-WOW64 david-laptop 1.7.14(0.260/5/3) 2012-04-25 09:41 i686 > Cygwin > > and mingw64 w

[Mingw-w64-public] gcc does not find input file

2012-05-10 Thread David Froger
Dear all, I'm trying to get starting with mingw64, and I have problems when passing input file to gcc by absolute path. I've installed Cygwin: $ uname -a CYGWIN_NT-6.1-WOW64 david-laptop 1.7.14(0.260/5/3) 2012-04-25 09:41 i686 Cygwin and mingw64 with this file: http://sourceforge.net/projects/m

Re: [Mingw-w64-public] gcc build stage 2 error

2012-05-10 Thread Whitequill Riclo
On Sun, Feb 19, 2012 at 12:27 AM, Whitequill Riclo wrote: > thanx, I'll give it a look over. > > On Sat, Feb 18, 2012 at 7:45 PM, JonY wrote: > >> On 2/19/2012 04:40, Whitequill Riclo wrote: >> > where do I find mkbuildroot.mk? >> > >> >> In SVN, >> >> https://mingw-w64.svn.sourceforge.net/svnroo

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

2012-05-10 Thread Jonathan Wakely
On 10 May 2012 15:03, K. Frank wrote: > > Neither of these shows --enable-threads of any flavor (in gcc -v), but both > show "Thread model: win32" in the gcc -v output. Yep, if you don't explicitly configure with --enable-threads then the configure script picks a suitable default, which is "win32"

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

2012-05-10 Thread K. Frank
Hello Jonathan! On Wed, May 9, 2012 at 7:06 PM, Jonathan Wakely wrote: > On 9 May 2012 20:06, K. Frank wrote: >> However, as noted in my previous post, I have happily done some >> (limited) windows-api threading programming with Ruben's build >> (and also did the windows-api threading programming

Re: [Mingw-w64-public] Relicensed vsstyle.h and vssym32.h headers

2012-05-10 Thread Kai Tietz
2012/5/10 Piotr Caban : > Hi, > > I was asked about sending some relicensed headers from wine. > > Cheers, > Piotr Hello Piotr, thanks for your contribution. I've applied these two files at rev. 4990 to our trunk repository. Best regards, Kai ---