summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAuriane R <48684432+aurianer@users.noreply.github.com>2023-09-20 16:21:06 +0200
committerGitHub <noreply@github.com>2023-09-20 16:21:06 +0200
commitc4a53cf3765258e140378326b619d5c908ee614b (patch)
tree26cd397af3784e30591bf79c52206acdda4f924b
parente963d02a079bcb69971c23e87d2d23bfacb68e9a (diff)
downloadspack-c4a53cf3765258e140378326b619d5c908ee614b.tar.gz
spack-c4a53cf3765258e140378326b619d5c908ee614b.tar.bz2
spack-c4a53cf3765258e140378326b619d5c908ee614b.tar.xz
spack-c4a53cf3765258e140378326b619d5c908ee614b.zip
Add 23 and 26 to the cxxstd variant for boost (#40081)
-rw-r--r--var/spack/repos/builtin/packages/boost/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/boost/package.py b/var/spack/repos/builtin/packages/boost/package.py
index d416666699..efa8b2270b 100644
--- a/var/spack/repos/builtin/packages/boost/package.py
+++ b/var/spack/repos/builtin/packages/boost/package.py
@@ -176,9 +176,11 @@ class Boost(Package):
"14",
# C++17 is not supported by Boost < 1.63.0.
conditional("17", when="@1.63.0:"),
- # C++20/2a is not support by Boost < 1.73.0
+ # C++20/2a is not supported by Boost < 1.73.0
conditional("2a", when="@1.73.0:"),
conditional("20", when="@1.77.0:"),
+ conditional("23", when="@1.79.0:"),
+ conditional("26", when="@1.79.0:"),
),
multi=False,
description="Use the specified C++ standard when building.",