I'm just preparing to install Gentoo on a new system. It runs with a AMD GEODE NX 1750 cpu.
Unfortunately the cpu isn't on http://gentoo-wiki.com/Safe_Cflags
Does anyone know safe Cflags for this cpu?
Thanks a lot!
L.

CHOST="i686-pc-linux-gnu"
CFLAGS="-march=k8 -O2 -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
Why??-march=k8
Am I wrong? Please correct me if so.cat /proc/cpuinfo
processor : 0
vendor_id : AuthenticAMD
cpu family : 6
model : 8
model name : AMD Athlon(tm) Prosowwor
stepping : 1
cpu MHz : 1396.207
cache size : 256 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 1
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat pse36 mmx fxsr sse syscall mp mmxext 3dnowext 3dnow ts fid vid
bogomips : 2796.50

In other words: It's a low-power-consumption Athlon.The NX processor family leverages Mobile AMD Athlon processor technology to deliver superior computing power for a variety of thin-client and other applications including point-of-sale terminals, kiosks, high-end printers and home media systems.

Notice the "7th-generation" bit. I believe that means Athlon socket A.The AMD Geode NX processor family is ideally suited for applications that require an optimum combination of high-performance and low-power consumption. The NX processors are supported by extensive production infrastructure built around a proven 7th-generation architecture and a long-term supply commitment.
Code: Select all
CHOST="i686-pc-linux-gnu"
CFLAGS="-march=athlon-xp -O2 -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
Code: Select all
cat /proc/cpuinfo
processor : 0
vendor_id : AuthenticAMD
cpu family : 6
model : 8
model name : AMD Athlon(tm) Prosowwor
stepping : 1
cpu MHz : 1396.207
cache size : 256 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 1
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat pse36 mmx fxsr sse syscall mp mmxext 3dnowext 3dnow ts fid vid
bogomips : 2796.50