compiler-wrapper: add missing links on Cray
This commit is contained in:
parent
6989bf9661
commit
229945ed27
@ -134,6 +134,12 @@ def install(self, spec, prefix):
|
|||||||
(bin_dir / subdir).mkdir(exist_ok=True)
|
(bin_dir / subdir).mkdir(exist_ok=True)
|
||||||
(bin_dir / subdir / name).symlink_to(installed_script)
|
(bin_dir / subdir / name).symlink_to(installed_script)
|
||||||
|
|
||||||
|
# Extra symlinks for Cray
|
||||||
|
cray_dir = bin_dir / "cce" / "case-insensitive"
|
||||||
|
cray_dir.mkdir(exist_ok=True)
|
||||||
|
(cray_dir / "crayCC").symlink_to(installed_script)
|
||||||
|
(cray_dir / "CC").symlink_to(installed_script)
|
||||||
|
|
||||||
def setup_dependent_build_environment(self, env, dependent_spec):
|
def setup_dependent_build_environment(self, env, dependent_spec):
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user