CPUNAME="C3 Ezra-T"
if use_gcc2; then
 CFLAGS="-march=i586"
else
 # Note: for gcc <3.3 then -march=i586
 CFLAGS="-march=c3" # gcc at least 4.0.2 has c3 as 486, ezra-t is 686 minus x86_cmove, so 586 is supported
                                        # see http://www.courville.org/phpwiki/Gcc
fi
   HOST="i586-pc-linux-gnu"
   FAST="-O3" # Note: should this be -Os
              # see: http://www.epiawiki.org/wiki/tiki-index.php?page=EpiaInstallingGentoo
  SMALL="-Os"
