Stephen Boulet wrote: >Is this a valid CFLAG for pentium 3? > >CFLAGS="-march=pentium3 -mcpu=pentium3 -O3 -pipe"
AFAIK it is. It does however, contain a bit of redundancy. According to the GCC man page; "specifying -march=cpu-type implies -mcpu=cpu-type." So the following should be identical: CFLAGS="-march=pentium3 -O3 -pipe" Cheers, Sam -- [EMAIL PROTECTED] mailing list
