Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/12/2006, 23:11
shadfx
 
Fecha de Ingreso: octubre-2006
Mensajes: 57
Antigüedad: 17 años, 6 meses
Puntos: 0
Optimizacion, COMPILE FLAGS

Hola, tengo la siguiente información:
Código:
# cat /proc/cpuinfo             
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 15
model           : 2
model name      : Intel(R) Pentium(R) 4 CPU 1.80GHz
stepping        : 9
cpu MHz         : 1795.561
cache size      : 512 KB
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 2
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe up cid xtpr
bogomips        : 3594.81
y en /etc/makepkg.conf cambie esto:
Código:
#-- Optimized: will run on any x86, but optimized for i686
#export CFLAGS="-mcpu=i686 -O2 -pipe"
#export CXXFLAGS="-mcpu=i686 -O2 -pipe"
#-- Make Flags: change this for DistCC/SMP systems
#export MAKEFLAGS="-j2"
por esto:
Código:
export CARCH="i686"
export CHOST="i686-pc-linux-gnu"
#-- Exclusive: will only run on i686 or higher (P6, Athlon)
export CFLAGS="-march=i686 -O3 -pipe"
export CXXFLAGS="-march=i686 -O3 -pipe"
Esta bastante más acelerado, eso conlleva algun daño o problema a futuro?
debo compilar el kernel denuevo despues de ese cambio?