From: rale00@earthlink.net (rale)
Subject: Re: Can't optimize
4 Nov 1997 16:12:57 -0800
Message-ID: <345FB2E6.F24B5C19.cygnus.gnu-win32@earthlink.net>
References: <199711042016.VAA05155@spirit.nova.es>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: frr@nova.es
Cc: gnu-win32@cygnus.com

Fernando Rodriguez Romero wrote:
> 
> Hi!
> 
>         Apparently my compiler doesn't like the optimizations options
> (-01, -02, etc...).
>         If I try gcc -o3 hi.exe hello.c (for example) it considers the 3
> (after the -o) as the output file name. =:-O
>         This will produce no error, but an output file called 3:
> 
That needs to be -O3
ie. "gcc -O3 hello.c -o hi"

-O = optimize
-o = output file

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