CPUNAME="C3 Samuel 2"
if use_gcc2; then
 CFLAGS="-march=i686"
else
 # Note: for gcc <3.3 then -march=i686, for gcc >3.3.2 then -march=c3-2
 CFLAGS="-march=c3 -msse -mmmx -mfpmath=sse -pipe -fomit-frame-pointer"
fi
   HOST="i686-pc-linux-gnu"
   FAST="-O3" # Note: should this be -Os
              # see: http://www.epiawiki.org/wiki/tiki-index.php?page=EpiaInstallingGentoo
  SMALL="-Os"
