superlu-dist: don't use '_' symbols from BLAS for IBM XL compiler (#4486)
This commit is contained in:
parent
3025f9d303
commit
0e5fb26dc1
@ -83,7 +83,9 @@ def install(self, spec, prefix):
|
||||
'F90FLAGS = -O2',
|
||||
'LOADER = {0}'.format(self.spec['mpi'].mpif77),
|
||||
'LOADOPTS =',
|
||||
'CDEFS = -DAdd_'
|
||||
'CDEFS = %s' % ("-DNoChange"
|
||||
if '%xl' in spec or '%xl_r' in spec
|
||||
else "-DAdd_")
|
||||
])
|
||||
|
||||
with open('make.inc', 'w') as fh:
|
||||
|
Loading…
Reference in New Issue
Block a user