The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Subarches"
Line 13: | Line 13: | ||
|where=CPU_Family="64-bit Intel Processors" | |where=CPU_Family="64-bit Intel Processors" | ||
|fields=_pageName,Subarch,Description,CFLAGS | |fields=_pageName,Subarch,Description,CFLAGS | ||
|order_by=Release_Date DESC | |||
|format=template | |format=template | ||
|template=NewSubarchList}} | |template=NewSubarchList}} |
Revision as of 06:38, June 23, 2015
Download/Browse Funtoo Linux Subarches
This page provides an overview of Funtoo Linux sub-architectures (also called subarches) designed for quick and easy reference. Funtoo Linux provides optimized installation images for all sub-architectures listed below. Clicking on a particular subarch will bring you to a detail page where you can learn more about that subarch and download a stage3 for installation.
{{#ask:CPU Family::64-bit Processors (PC-Compatible, Generic) |?# |?Subarch |?CFLAGS |?Description |format=template |link=none |headers=hide |searchlabel=... further results |sep=, |template=SubarchList }}
Core2 64 | core2_64 | The core2_64 subarch supports 64-bit-capable processors based on the Core microarchitecture and all processors of the Penryn microarchitecture. This includes all Intel Core 2 branded processors, some Celeron, some Pentium and some Xeon branded processors. | -march=core2 -O2 -pipe |
Intel64-broadwell | intel64 | The intel64-broadwell subarch specifically supports processors based on Intel's Broadwell microarchitecture. Broadwell desktop processors are branded as 5th Generation Intel Core i3, Core i5, and Core i7 Processors. | -march=broadwell -O2 -pipe |
Intel64-haswell | intel64 | The intel64-haswell subarch specifically supports processors based on Intel's Haswell microarchitecture. Haswell desktop processors are branded as 4th Generation Intel Core i3, Core i5, and Core i7 Processors. | -march=haswell -O2 -pipe |
Intel64-ivybridge | intel64 | The intel64-ivybridge subarch specifically supports processors based on Intel's Ivy Bridge microarchitecture and AVX instructions. These processors are branded as 3rd Generation Intel Core i3, Core i5, and Core i7 Processors. | -march=ivybridge -O2 -pipe |
Intel64-nehalem | intel64 | The intel64-nehalem subarch supports first-generation Intel Core processors: Nehalem microarchitecture-based Intel Pentium/Celeron, Intel Core i3, i5, i7 and Xeon Processors. | -march=nehalem -O2 -pipe |
Intel64-sandybridge | intel64 | The intel64-sandybridge subarch specifically supports processors based on Intel's Sandy Bridge microarchitecture and AVX instructions. These processors are branded as 2nd Generation Intel Core i3, Core i5, and Core i7 Processors. | -march=sandybridge -O2 -pipe |
Intel64-silvermont | intel64 | Silvermont is a low-power Atom-based microarchitecture that includes Intel Bay Trail, Avoton and Rangeley Processors. | -march=silvermont -O2 -pipe |
Intel64-skylake | intel64 | The intel64-skylake subarch specifically supports processors based on Intel's Skylake microarchitecture. Skylake desktop processors are branded as 6th (Skylake) and 7th (Kaby Lake) Generation Intel Core i3, Core i5, and Core i7 Processors. | -march=skylake -O2 -pipe |
Intel64-westmere | intel64 | Intel Westmere processors are updated first-generation Nehalem processors that included a die-shrink and additional AES and PCLMUL instructions. | -march=westmere -O2 -pipe |
{{#ask:CPU Family::64-bit AMD Processors |?# |?Subarch |?CFLAGS |?Description |format=template |link=none |headers=hide |searchlabel=... further results |sep=, |template=SubarchList }} {{#ask:CPU Family::64-bit Processors (PC-Compatible, Generic) |?# |?Subarch |?CFLAGS |?Description |format=template |link=none |headers=hide |searchlabel=... further results |sep=, |template=SubarchList }}
{{#ask:CHOST::i686-pc-linux-gnu |?# |?Subarch |?CFLAGS |?Description |format=template |link=none |headers=hide |searchlabel=... further results |sep=, |template=SubarchList }}
{{#ask:CPU Family::32-bit ARM Processors |?# |?Subarch |?CFLAGS |?Description |format=template |link=none |headers=hide |searchlabel=... further results |sep=, |template=SubarchList }}
How to Identify your CPU
There are a couple of ways to identify the type of CPU you have. One option is to use the lscpu
command:
root # lscpu
If the lscpu
command is unavailable, you can get similar information via /proc
:
root # cat /proc/cpuinfo | grep "^model name" | uniq model name : Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz
The cpuid
command is another option and can provide other interesting information:
root # emerge cpuid; cpuid | tail -n 1
Search is your friend. Take the chip name gathered, then google wiki chipname to find the wikipedia article for your chip. The right hand column of your processors wiki article will list the microarchitecture.
example: searching for "amd phenom wiki" returns this article & the article says its "Microarchitecture K10"