diff options
author | Auriane R <48684432+aurianer@users.noreply.github.com> | 2023-09-20 16:21:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 16:21:06 +0200 |
commit | c4a53cf3765258e140378326b619d5c908ee614b (patch) | |
tree | 26cd397af3784e30591bf79c52206acdda4f924b | |
parent | e963d02a079bcb69971c23e87d2d23bfacb68e9a (diff) | |
download | spack-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.py | 4 |
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.", |