]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/src/tools/features/architecture-feature.jam
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / architecture-feature.jam
index 3e3ca382f907cb678dc0d1cf7d9b8b0c87ee91a1..3c9d92f325b471d7b82c8edb4fb015132b56e230 100644 (file)
@@ -1,16 +1,16 @@
 # Copyright 2017 Rene Rivera
 # Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or copy at
-# http://www.boost.org/LICENSE_1_0.txt)
+# (See accompanying file LICENSE.txt or copy at
+# https://www.bfgroup.xyz/b2/LICENSE.txt)
 
 import feature ;
 
 #| tag::doc[]
 
 [[bbv2.builtin.features.architecture]]`architecture`::
-*Allowed values:* `x86`, `ia64`, `sparc`, `power`, `mips1`, `mips2`,
+*Allowed values:* `x86`, `ia64`, `sparc`, `power`, `mips`, `mips1`, `mips2`,
 `mips3`, `mips4`, `mips32`, `mips32r2`, `mips64`, `parisc`, `arm`,
-`s390x`, `combined`, `combined-x86-power`.
+`s390x`, `loongarch`.
 +
 Specifies the general processor family to generate code for.
 
@@ -30,8 +30,11 @@ feature.feature architecture
         # RS/6000 & PowerPC
         power
 
+        # LoongArch
+        loongarch
+
         # MIPS/SGI
-        mips1 mips2 mips3 mips4 mips32 mips32r2 mips64
+        mips mips1 mips2 mips3 mips4 mips32 mips32r2 mips64
 
         # HP/PA-RISC
         parisc
@@ -44,12 +47,6 @@ feature.feature architecture
 
         # z Systems (aka s390x)
         s390x
-
-        # Combined architectures for platforms/toolsets that support building for
-        # multiple architectures at once. "combined" would be the default multi-arch
-        # for the toolset.
-        combined
-        combined-x86-power
     :
         propagated optional
     ;