CPUNAME="C3 Nehemiah"
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-2" # note no 3dnow support, sse instead
                                                     # see http://www.courville.org/phpwiki/Gcc
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"
