]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/architecture-feature.jam
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / architecture-feature.jam
1 # Copyright 2017 Rene Rivera
2 # Distributed under the Boost Software License, Version 1.0.
3 # (See accompanying file LICENSE_1_0.txt or copy at
4 # http://www.boost.org/LICENSE_1_0.txt)
5
6 # Type of CPU architecture to compile for.
7
8 import feature ;
9
10 feature.feature architecture
11 :
12 # x86 and x86-64
13 x86
14
15 # ia64
16 ia64
17
18 # Sparc
19 sparc
20
21 # RS/6000 & PowerPC
22 power
23
24 # MIPS/SGI
25 mips1 mips2 mips3 mips4 mips32 mips32r2 mips64
26
27 # HP/PA-RISC
28 parisc
29
30 # Advanced RISC Machines
31 arm
32
33 # RISC-V
34 riscv
35
36 # z Systems (aka s390x)
37 s390x
38
39 # Combined architectures for platforms/toolsets that support building for
40 # multiple architectures at once. "combined" would be the default multi-arch
41 # for the toolset.
42 combined
43 combined-x86-power
44 :
45 propagated optional
46 ;