Skip to content

Commit 72500dd

Browse files
author
Theofilos Manitaras
committed
Address PR comments (version 2)
1 parent a1453e9 commit 72500dd

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

cscs-checks/libraries/io/hdf5_compile_run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,4 @@ def cray_linker_workaround(self):
8585
self.current_environ.name == 'PrgEnv-cray'):
8686
return
8787

88-
self.variables = {'LINKER_X86_64': '/usr/bin/ld',
89-
'LINKER_AARCH64': '/usr/bin/ld'}
88+
self.variables = {'ALT_LINKER': '/usr/bin/ld'}

cscs-checks/libraries/io/netcdf_compile_run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,4 @@ def cray_linker_workaround(self):
9292
self.current_environ.name == 'PrgEnv-cray'):
9393
return
9494

95-
self.variables = {'LINKER_X86_64': '/usr/bin/ld',
96-
'LINKER_AARCH64': '/usr/bin/ld'}
95+
self.variables = {'ALT_LINKER': '/usr/bin/ld'}

cscs-checks/libraries/math/scalapack_compile_run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ def cray_linker_workaround(self):
3737
self.current_environ.name == 'PrgEnv-cray'):
3838
return
3939

40-
self.variables.update({'LINKER_X86_64': '/usr/bin/ld',
41-
'LINKER_AARCH64': '/usr/bin/ld'})
40+
self.variables['ALT_LINKER'] = '/usr/bin/ld'
4241

4342

4443
@rfm.required_version('>=2.14')

cscs-checks/prgenv/helloworld.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@ def cray_linker_workaround(self):
108108
self.current_environ.name.startswith('PrgEnv-cray')):
109109
return
110110

111-
self.variables.update({'LINKER_X86_64': '/usr/bin/ld',
112-
'LINKER_AARCH64': '/usr/bin/ld'})
111+
self.variables['ALT_LINKER'] = '/usr/bin/ld'
113112

114113

115114
@rfm.required_version('>=2.14')

0 commit comments

Comments
 (0)