View previous topic :: View next topic |
Author |
Message |
accountcreation4 Tux's lil' helper
Joined: 15 Oct 2006 Posts: 135
|
Posted: Fri Mar 20, 2009 12:52 am Post subject: to use x86 or i686 stage when installing? |
|
|
i use a pentium 4 willamette, and its technically a i800 ish around there, and i didnt see i686 support anything as high as p4 and up |
|
Back to top |
|
|
mikegpitt Advocate
Joined: 22 May 2004 Posts: 3224
|
Posted: Fri Mar 20, 2009 2:09 am Post subject: Re: to use x86 or i686 stage when installing? |
|
|
accountcreation4 wrote: | i use a pentium 4 willamette, and its technically a i800 ish around there, and i didnt see i686 support anything as high as p4 and up | If you have a P4 you should use the i686 stage. You can recompile everything afterwords to optimize for your processor, -march=pentium4. |
|
Back to top |
|
|
netnamnetviet n00b
Joined: 17 Mar 2009 Posts: 19
|
Posted: Fri Mar 20, 2009 7:50 am Post subject: |
|
|
I have a Intel Celeron 2.00GHz
lspci:
00:00.0 Host bridge: Intel Corporation 82845G/GL[Brookdale-G]/GE/PE DRAM Controller/Host-Hub Interface (rev 01)
00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device
(rev 01)
00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 81)
00:1f.0 ISA bridge: Intel Corporation 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge (rev 01)
00:1f.1 IDE interface: Intel Corporation 82801DB (ICH4) IDE Controller (rev 01)
00:1f.3 SMBus: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 01)
00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio
Controller (rev 01)
01:08.0 Ethernet controller: Intel Corporation 82801DB PRO/100 VE (LOM) Ethernet Controller (rev 81)
to use x86 or i686 stage when installing? |
|
Back to top |
|
|
purak Apprentice
Joined: 21 Jun 2008 Posts: 160 Location: /dev/urandom
|
Posted: Fri Mar 20, 2009 8:42 am Post subject: |
|
|
You had better use i686 stage with this variables.
Code: | CFLAGS="-march=i686 -O2 -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
|
_________________
|
|
Back to top |
|
|
mikegpitt Advocate
Joined: 22 May 2004 Posts: 3224
|
Posted: Fri Mar 20, 2009 1:19 pm Post subject: |
|
|
purak wrote: | You had better use i686 stage with this variables.
Code: | CFLAGS="-march=i686 -O2 -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
|
| Yes, use the i686 stage, but you can optimize a bit more for your processor. Take a look at this page, it has listings for many intel chips and the corresponding CFLAGS:
http://en.gentoo-wiki.com/wiki/Safe_Cflags/Intel
Make sure you correctly identify your processor by checking `cat /proc/cpuinfo` before making a selection. |
|
Back to top |
|
|
|