blob: a8474efae8ac9150f1260a939ec43be1b1868465 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# This file contains the table of known CPU names.
#
# Architecture names are formed as a combination of the system name
# (from ostable) and CPU name (from this table) after mapping from
# the Debian triplet (from triplettable). A list of architecture
# names in the Debian ‘sid’ distribution can be found in the archtable
# file.
#
# Column 1 is the Debian name for the CPU, used to form the cpu part in
# the Debian triplet.
# Column 2 is the GNU name for the CPU, used to output build and host
# targets in ‘dpkg-architecture’.
# Column 3 is an extended regular expression used to match against the
# CPU part of the output of the GNU config.guess script.
#
# <Debian name> <GNU name> <config.guess regex>
i386 i486 (i[3456]86|pentium)
ia64 ia64 ia64
alpha alpha alpha.*
amd64 x86_64 x86_64
armeb armeb arm.*b
arm arm arm.*
hppa hppa hppa.*
m32r m32r m32r
m68k m68k m68k
mips mips mips(eb)?
mipsel mipsel mipsel
powerpc powerpc (powerpc|ppc)
ppc64 powerpc64 (powerpc|ppc)64
s390 s390 s390
s390x s390x s390x
sh3 sh3 sh3
sh3eb sh3eb sh3eb
sh4 sh4 sh4
sh4eb sh4eb sh4eb
sparc sparc sparc(64)?
|