diff options
author | John W. Parent <45471568+johnwparent@users.noreply.github.com> | 2024-03-14 21:08:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 19:08:38 -0600 |
commit | 4495e0341d37da0545ff86c58c66219fde00f65d (patch) | |
tree | bf7b74e9bd500094da5ad46147609dca0f6c24e9 /lib | |
parent | ba3992404656a77414215643bd6631d863329d35 (diff) | |
download | spack-4495e0341d37da0545ff86c58c66219fde00f65d.tar.gz spack-4495e0341d37da0545ff86c58c66219fde00f65d.tar.bz2 spack-4495e0341d37da0545ff86c58c66219fde00f65d.tar.xz spack-4495e0341d37da0545ff86c58c66219fde00f65d.zip |
Clingo bootstrapping: Remove msvc constraint (#43199)
Patch allowing Clingo to build with VS22 has landed both in Spack
and Clingo upstream, update Spack's bootstrap constraints to handle
this.
Additionally, properly scope the patch application in the clingo
package to handle upstream patch.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/bootstrap/_common.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/spack/spack/bootstrap/_common.py b/lib/spack/spack/bootstrap/_common.py index 08bb9377b7..2ce53d3165 100644 --- a/lib/spack/spack/bootstrap/_common.py +++ b/lib/spack/spack/bootstrap/_common.py @@ -213,9 +213,6 @@ def _root_spec(spec_str: str) -> str: platform = str(spack.platforms.host()) if platform == "darwin": spec_str += " %apple-clang" - elif platform == "windows": - # TODO (johnwparent): Remove version constraint when clingo patch is up - spec_str += " %msvc@:19.37" elif platform == "linux": spec_str += " %gcc" elif platform == "freebsd": |