This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Console-free EXE with Mingw32


Hilton Fernandes <hgfernan@usp.br> wrote:
> 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.


I believe those "-W1" options above should be -Wl (that is, dash double-yew
ell, not dash double-yew one). Also, if you use gcc to do your linking (as
suggested) and if your specs file is correctly set up (as it should be if
everything else is working) then you could use -mwindows to do the same
thing (and get those extra libraries too) e.g.

 gcc -o hello.exe foo.o bar.o -mwindows

If you are using 0.1.4 of Mingw32 instead of the latest snapshot (the
versions included with Jan-Jaap's versions of GCC or Mumit Khan's versions
of EGCS also use -mwindows) then you should use -windows, though I suggest
you edit the specs file and replace all occurences of %{windows: with
%{mwindows: and use -mwindows to be consistent with Cygnus and later Mingw32
releases on this.

Also, not specifying the entry point with -e _mainCRTStartup should not give
you a warning with the latest snapshot of Mingw32 (or version 0.1.4 either
if I remember correctly). Even if you do get the warning (could not find
entry point _WinMainCRTStartup or something like that) it is harmless in all
the cases I am aware of.

-- Colin Peters - colin at fu.is.saga-u.ac.jp
-- Saga Univ. Dept. of Information Science
-- http://www.geocities.com/Tokyo/Towers/6162/index.html
-- http://www.fu.is.saga-u.ac.jp/~colin/index.html



-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]