Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
b2a4af76
Unverified
Commit
b2a4af76
authored
4 years ago
by
Tomoki, Karatsu
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
vtk: Add patch for finding Fujitsu-MPI wrapper commands. (#17069)
parent
cee24fbc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
var/spack/repos/builtin/packages/vtk/find_fujitsu_mpi.patch
+18
-0
18 additions, 0 deletions
var/spack/repos/builtin/packages/vtk/find_fujitsu_mpi.patch
var/spack/repos/builtin/packages/vtk/package.py
+3
-0
3 additions, 0 deletions
var/spack/repos/builtin/packages/vtk/package.py
with
21 additions
and
0 deletions
var/spack/repos/builtin/packages/vtk/find_fujitsu_mpi.patch
0 → 100644
+
18
−
0
View file @
b2a4af76
--- VTK-8.2.0/CMake/FindMPI.cmake.org 2020-06-11 14:50:51.000000000 +0900
+++ VTK-8.2.0/CMake/FindMPI.cmake 2020-06-11 14:51:21.000000000 +0900
@@ -99,12 +99,12 @@
#
# Start out with the generic MPI compiler names, as these are most commonly used.
-set(_MPI_C_COMPILER_NAMES mpicc mpcc mpicc_r mpcc_r)
+set(_MPI_C_COMPILER_NAMES mpicc mpcc mpicc_r mpcc_r, mpifcc)
set(_MPI_CXX_COMPILER_NAMES mpicxx mpiCC mpcxx mpCC mpic++ mpc++
- mpicxx_r mpiCC_r mpcxx_r mpCC_r mpic++_r mpc++_r)
+ mpicxx_r mpiCC_r mpcxx_r mpCC_r mpic++_r mpc++_r, mpiFCC)
set(_MPI_Fortran_COMPILER_NAMES mpif95 mpif95_r mpf95 mpf95_r
mpif90 mpif90_r mpf90 mpf90_r
- mpif77 mpif77_r mpf77 mpf77_r)
+ mpif77 mpif77_r mpf77 mpf77_r, mpifrt)
# GNU compiler names
set(_MPI_GNU_C_COMPILER_NAMES mpigcc mpgcc mpigcc_r mpgcc_r)
This diff is collapsed.
Click to expand it.
var/spack/repos/builtin/packages/vtk/package.py
+
3
−
0
View file @
b2a4af76
...
@@ -103,6 +103,9 @@ class Vtk(CMakePackage):
...
@@ -103,6 +103,9 @@ class Vtk(CMakePackage):
depends_on
(
'
double-conversion
'
,
when
=
'
@8.2.0:
'
)
depends_on
(
'
double-conversion
'
,
when
=
'
@8.2.0:
'
)
depends_on
(
'
sqlite
'
,
when
=
'
@8.2.0:
'
)
depends_on
(
'
sqlite
'
,
when
=
'
@8.2.0:
'
)
# For finding Fujitsu-MPI wrapper commands
patch
(
'
find_fujitsu_mpi.patch
'
,
when
=
'
%fj
'
)
def
url_for_version
(
self
,
version
):
def
url_for_version
(
self
,
version
):
url
=
"
http://www.vtk.org/files/release/{0}/VTK-{1}.tar.gz
"
url
=
"
http://www.vtk.org/files/release/{0}/VTK-{1}.tar.gz
"
return
url
.
format
(
version
.
up_to
(
2
),
version
)
return
url
.
format
(
version
.
up_to
(
2
),
version
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment