diff options
author | Gregory Becker <becker33.llnl.gov> | 2016-07-21 14:04:22 -0700 |
---|---|---|
committer | Gregory Becker <becker33.llnl.gov> | 2016-07-21 14:04:22 -0700 |
commit | 2ae7429b18363128aaa35bca8d6b8cd3cd2f267a (patch) | |
tree | f79f00543bbe26024688140816f714fdbbab6992 /lib | |
parent | 098af1797137b0f84d4eb6d625a73fe45354357f (diff) | |
download | spack-2ae7429b18363128aaa35bca8d6b8cd3cd2f267a.tar.gz spack-2ae7429b18363128aaa35bca8d6b8cd3cd2f267a.tar.bz2 spack-2ae7429b18363128aaa35bca8d6b8cd3cd2f267a.tar.xz spack-2ae7429b18363128aaa35bca8d6b8cd3cd2f267a.zip |
Bug fix for cray_xc platform
Diffstat (limited to 'lib')
l--------- | lib/spack/env/cray/CC | 1 | ||||
l--------- | lib/spack/env/cray/cc | 1 | ||||
l--------- | lib/spack/env/cray/ftn | 1 | ||||
-rw-r--r-- | lib/spack/spack/platforms/cray_xc.py | 2 |
4 files changed, 4 insertions, 1 deletions
diff --git a/lib/spack/env/cray/CC b/lib/spack/env/cray/CC new file mode 120000 index 0000000000..82c2b8e90a --- /dev/null +++ b/lib/spack/env/cray/CC @@ -0,0 +1 @@ +../cc
\ No newline at end of file diff --git a/lib/spack/env/cray/cc b/lib/spack/env/cray/cc new file mode 120000 index 0000000000..82c2b8e90a --- /dev/null +++ b/lib/spack/env/cray/cc @@ -0,0 +1 @@ +../cc
\ No newline at end of file diff --git a/lib/spack/env/cray/ftn b/lib/spack/env/cray/ftn new file mode 120000 index 0000000000..82c2b8e90a --- /dev/null +++ b/lib/spack/env/cray/ftn @@ -0,0 +1 @@ +../cc
\ No newline at end of file diff --git a/lib/spack/spack/platforms/cray_xc.py b/lib/spack/spack/platforms/cray_xc.py index 2b065d5bbd..d3aab74fae 100644 --- a/lib/spack/spack/platforms/cray_xc.py +++ b/lib/spack/spack/platforms/cray_xc.py @@ -3,7 +3,7 @@ from spack.architecture import Platform, Target from spack.operating_systems.linux_distro import LinuxDistro from spack.operating_systems.cnl import Cnl from spack.util.executable import which - +from spack.util.file_system import join_path class CrayXc(Platform): priority = 20 |