Merge pull request #1335 from LLNL/crayxc-detection

Crayxc detection
This commit is contained in:
becker33 2016-07-21 15:06:42 -07:00 committed by GitHub
commit dd5b1ac098
4 changed files with 6 additions and 0 deletions

1
lib/spack/env/cray/CC vendored Symbolic link
View file

@ -0,0 +1 @@
../cc

1
lib/spack/env/cray/cc vendored Symbolic link
View file

@ -0,0 +1 @@
../cc

1
lib/spack/env/cray/ftn vendored Symbolic link
View file

@ -0,0 +1 @@
../cc

View file

@ -1,8 +1,10 @@
import os
import spack
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 llnl.util.filesystem import join_path
class CrayXc(Platform):
@ -53,6 +55,7 @@ def setup_platform_environment(self, pkg, env):
cray_wrapper_names = join_path(spack.build_env_path, 'cray')
if os.path.isdir(cray_wrapper_names):
env.prepend_path('PATH', cray_wrapper_names)
env.prepend_path('SPACK_ENV_PATHS', cray_wrapper_names)
@classmethod
def detect(self):