From: hgfernan@usp.br (Hilton Fernandes)
Subject: Re: Console-free EXE with Mingw32
7 Apr 1998 01:45:52 -0700
Message-ID: <9804011205.AA17760.cygnus.gnu-win32@spider.uspnet.usp.br>
References: <9803260912.AA10990@fe13603.fe.bosch.de>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7BIT
To: woschwot@fe13603.fe.bosch.de (Wolfgang Schwotzer), gnu-win32@cygnus.com
Cc: Hilton Fernandes <hgfernan@usp.br>

On 26 Mar 98 at 10:12,  Wolfgang Schwotzer <woschwot@fe13603.fe.bosch.de> 
wrote:

> How to build a ...

Hello Wolfgang.

To create a console executable you use, say:
	gcc -o some_exec some_obj_1.o some_obj_2.o

To create a console-free, GUI executable, you append 
	-W1,--subsystem,windows,-e,_mainCRTStartup

to the end of the previous command line.
Sometimes you'll need Win32 API functions available only in GDI and USER 
Windows modules.  In that case, you should use 
 -luser32 -lgdi32 -W1,--subsystem,windows,-e,_mainCRTStartup

That is, before appending the GUI suffix, you prefix it with the libraries.

OBS.: based on a previous message by Axel Riese 
<Axel.Riese@risc.uni-linz.ac.at>, to gnu-win32, received in 8/Feb/1998.


HTH
++Hilton
-------------------
Hilton Fernandes
email: hgfernan@usp.br
www:   http://www.lsi.usp.br/~hilton.html (inactive)
M. Sc. Student of Parallel Distributed Applications
at Escola Politecnica (Polytechnic School)
University of S. Paulo - Brazil
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
