]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/architecture-feature.jam
update sources to v12.2.3
[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 # Combined architectures for platforms/toolsets that support building for
34 # multiple architectures at once. "combined" would be the default multi-arch
35 # for the toolset.
36 combined
37 combined-x86-power
38 :
39 propagated optional
40 ;