View previous topic :: View next topic |
Author |
Message |
MrDirt Gizmo n00b
Joined: 19 Jun 2005 Posts: 17 Location: Milano && 74100 Puglia (CA)
|
Posted: Fri Jul 08, 2005 12:28 pm Post subject: |
|
|
wolf3d wrote: | ho lanciato un search generico ma dovrebbe andare bene |
Va benissimo, grazie |
|
Back to top |
|
|
Thegreatone n00b
Joined: 12 Jul 2005 Posts: 36
|
Posted: Tue Oct 18, 2005 1:12 pm Post subject: Passare a GCC 3.4 con un Centrino....ne vale la pena? |
|
|
Ciao a tutti!
Attualmente cul mio Centrino 1.5 uso GCC 3.3.6 con le seguenti CFLAGS:
Code: | CFLAGS="-O2 -mcpu=i686 -fomit-frame-pointer -march=pentium3 -mfpmath=sse -msse2 -mmmx" |
Vale la pena fare l'aggiornamento a GCC 3.4 e adattare le CFLAGS a questo compilatore?
Grazie mille
Luca |
|
Back to top |
|
|
neryo Veteran
Joined: 09 Oct 2004 Posts: 1292 Location: Ferrara, Italy, Europe
|
Posted: Tue Oct 18, 2005 1:19 pm Post subject: Re: Passare a GCC 3.4 con un Centrino....ne vale la pena? |
|
|
Thegreatone wrote: |
Vale la pena fare l'aggiornamento a GCC 3.4 e adattare le CFLAGS a questo compilatore?
|
se fai un ricerca questo tipo di argomento è stato trattato molte volte. _________________ cache: a safe place for hiding or storing things..
D-link DWL-G650 AirPlus
Apache Php Mysql |
|
Back to top |
|
|
Cazzantonio Bodhisattva
Joined: 20 Mar 2004 Posts: 4514 Location: Somewere around the world
|
Posted: Tue Oct 18, 2005 1:36 pm Post subject: |
|
|
per esempio qua
[mod]topic mergiato[/mod]
io uso Quote: | CFLAGS="-O2 -march=i686 -mmmx -msse -mfpmath=sse,387 -pipe -fomit-frame-pointer -momit-leaf-frame-pointer -fno-ident -ffast-math" |
e non ho mai notato alcuna differenza nelle prestazioni... fai te _________________ Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne |
|
Back to top |
|
|
federico Advocate
Joined: 18 Feb 2003 Posts: 3272 Location: Italy, Milano
|
Posted: Tue Oct 18, 2005 4:04 pm Post subject: |
|
|
Cazzantonio wrote: | per esempio qua
[mod]topic mergiato[/mod]
io uso Quote: | CFLAGS="-O2 -march=i686 -mmmx -msse -mfpmath=sse,387 -pipe -fomit-frame-pointer -momit-leaf-frame-pointer -fno-ident -ffast-math" |
e non ho mai notato alcuna differenza nelle prestazioni... fai te |
Differenza rispetto cosa? _________________ Sideralis www.sideralis.org
Pic http://blackman.amicofigo.com/gallery
Arduino http://www.arduino.cc
Chi aveva potuto aveva spaccato
2000 pezzi buttati là
Molti saluti,qualche domanda
Semplice come musica punk |
|
Back to top |
|
|
Cazzantonio Bodhisattva
Joined: 20 Mar 2004 Posts: 4514 Location: Somewere around the world
|
Posted: Thu Oct 20, 2005 9:02 am Post subject: |
|
|
federico wrote: | Differenza rispetto cosa? |
Rispetto ad usare una march specifica... il gcc 3.4 ha questo in più per i processori centrino no?
p.s. anche le altre cflags sono lì per inerzia... effettivamente le potrei anche togliere... _________________ Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne |
|
Back to top |
|
|
Peach Advocate
Joined: 08 Mar 2003 Posts: 3686 Location: London, UK
|
Posted: Thu Oct 20, 2005 9:36 am Post subject: |
|
|
io ho un portatile con intel crentrino
e con gcc 3.3 uso costantemente queste flag:
Code: | CFLAGS="-O2 -march=pentium4 -pipe -fomit-frame-pointer -ffast-math" |
ma -badabén- che non saprei dire se cambia molto tra march pentium4 e pentium3... forse la soluzione proposta da Thegreatone è la migliore?
Inoltre mi sono state consigliate queste flag se volessi passare a gcc 3.4 :
Code: | CFLAGS="-O2 -march=pentium-m -mtune=pentium-m -pipe -ftracer -fomit-frame-pointer -ffast-math -momit-leaf-frame-pointers" |
_________________ Gentoo user since 2004.
"It's all fun and games, until someone loses an eye" - mom |
|
Back to top |
|
|
|