This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Apple's gcc -fast. revisited...
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: Gordon Royle <gordon at csse dot uwa dot edu dot au>, gcc-help at gcc dot gnu dot org
- Date: Fri, 10 Oct 2003 06:33:35 -0500
- Subject: Re: Apple's gcc -fast. revisited...
Hi Gordon,
I'm not familiar with the "-fast" flag, other than in Sun's compiler. I can only presume that it is either a Macintosh-only extension (or mistaken).
What do you see when you do this:
gcc -v -fast -save-temps -fverbose-asm -o test test.c
That should indicate which compiler flags are being enabled, in the assembly file.
How does it compare to:
gcc -v -O2 -save-temps -fverbose-asm -o test test.c
--Eljay