diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-07-09 01:28:23 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-07-09 01:28:23 -0700 |
commit | 5f8724650a9f7327961639e099cb0764605d1c62 (patch) | |
tree | e4d78360a1b23bd6f33d5754172989b57329750d /var | |
parent | bd8838ca6db5b1b234d42ce7175564645f5afa50 (diff) | |
download | spack-5f8724650a9f7327961639e099cb0764605d1c62.tar.gz spack-5f8724650a9f7327961639e099cb0764605d1c62.tar.bz2 spack-5f8724650a9f7327961639e099cb0764605d1c62.tar.xz spack-5f8724650a9f7327961639e099cb0764605d1c62.zip |
Fix for SPACK-35: Fortran not working properly
- Spack needed symlinks in env for fortran compilers.
- 'fc' is a bash bulitin, so can't use it for fortran compiler.
- switched to 'f90' for this.
- mpich 3 builds with fortran now.
- enabled shared libs in mpich package
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/mpich/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/packages/mpich/package.py b/var/spack/packages/mpich/package.py index af9e8266dc..703614a587 100644 --- a/var/spack/packages/mpich/package.py +++ b/var/spack/packages/mpich/package.py @@ -38,6 +38,8 @@ class Mpich(Package): provides('mpi@:1', when='@1:') def install(self, spec, prefix): - configure("--prefix=" + prefix) + configure( + "--prefix=" + prefix, + "--enable-shared") make() make("install") |