summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn W. Parent <45471568+johnwparent@users.noreply.github.com>2023-01-03 11:32:18 -0500
committerGitHub <noreply@github.com>2023-01-03 08:32:18 -0800
commit582f165871f796516f2c3d0937114fd4aa6bd2d3 (patch)
treeca8036bd380dfb430866419a4c57c7babfe68252
parentbf76f1e7746fad5e6319c62e87416f6cd2954459 (diff)
downloadspack-582f165871f796516f2c3d0937114fd4aa6bd2d3.tar.gz
spack-582f165871f796516f2c3d0937114fd4aa6bd2d3.tar.bz2
spack-582f165871f796516f2c3d0937114fd4aa6bd2d3.tar.xz
spack-582f165871f796516f2c3d0937114fd4aa6bd2d3.zip
Windows: package defaults and MPI detection (#34614)
* Update packages config to indicate that MSVC is the preferred compiler * Update packages config to indicate that msmpi is the preferred MPI provider * Fix msmpi external detection
-rw-r--r--etc/spack/defaults/windows/packages.yaml21
-rw-r--r--var/spack/repos/builtin/packages/msmpi/package.py13
2 files changed, 30 insertions, 4 deletions
diff --git a/etc/spack/defaults/windows/packages.yaml b/etc/spack/defaults/windows/packages.yaml
new file mode 100644
index 0000000000..863cf7cf18
--- /dev/null
+++ b/etc/spack/defaults/windows/packages.yaml
@@ -0,0 +1,21 @@
+# -------------------------------------------------------------------------
+# This file controls default concretization preferences for Spack.
+#
+# Settings here are versioned with Spack and are intended to provide
+# sensible defaults out of the box. Spack maintainers should edit this
+# file to keep it current.
+#
+# Users can override these settings by editing the following files.
+#
+# Per-spack-instance settings (overrides defaults):
+# $SPACK_ROOT/etc/spack/packages.yaml
+#
+# Per-user settings (overrides default and site settings):
+# ~/.spack/packages.yaml
+# -------------------------------------------------------------------------
+packages:
+ all:
+ compiler:
+ - msvc
+ providers:
+ mpi: [msmpi]
diff --git a/var/spack/repos/builtin/packages/msmpi/package.py b/var/spack/repos/builtin/packages/msmpi/package.py
index a2206d797f..748732994d 100644
--- a/var/spack/repos/builtin/packages/msmpi/package.py
+++ b/var/spack/repos/builtin/packages/msmpi/package.py
@@ -6,6 +6,7 @@
import os
import platform
import re
+import sys
from spack.build_systems.generic import GenericBuilder
from spack.package import *
@@ -18,7 +19,7 @@ class Msmpi(Package):
url = "https://github.com/microsoft/Microsoft-MPI/archive/refs/tags/v10.1.1.tar.gz"
git = "https://github.com/microsoft/Microsoft-MPI.git"
- executable = ["mpiexec.exe"]
+ executable = ["mpiexec"]
version("10.1.1", sha256="63c7da941fc4ffb05a0f97bd54a67968c71f63389a0d162d3182eabba1beab3d")
version("10.0.0", sha256="cfb53cf53c3cf0d4935ab58be13f013a0f7ccb1189109a5b8eea0fcfdcaef8c1")
@@ -31,9 +32,13 @@ class Msmpi(Package):
@classmethod
def determine_version(cls, exe):
- output = Executable(exe)()
- ver_str = re.search("[Version ([0-9.]+)]", output)
- return Version(ver_str.group(0)) if ver_str else None
+ # MSMPI is typically MS only, don't detect on other platforms
+ # to avoid potential collisions with other mpiexec executables
+ if sys.platform != "win32":
+ return None
+ output = Executable(exe)(output=str, error=str)
+ ver_str = re.search(r"Microsoft MPI Startup Program \[Version ([0-9.]+)\]", output)
+ return Version(ver_str.group(1)) if ver_str else None
class GenericBuilder(GenericBuilder):