corrected LD_LIBRARY_PATH processing of LAPACK and added FFTW to it.

This commit is contained in:
Philip Eisenlohr 2011-12-21 13:13:11 +00:00
parent 06cb99d156
commit b12c6672d6
1 changed files with 10 additions and 5 deletions

View File

@ -35,14 +35,19 @@ environment = { 'DAMASK_ROOT':
],
'LD_LIBRARY_PATH':
[{'activate': 'pathInfo["acml"]',
'delete':'"acml"', # what keywords trigger item deletion from existing path
'delete':'"acml"', # what keywords trigger item deletion from existing path
'substitute':'[os.path.join(pathInfo["acml"],"ifort64_mp/lib"),\
os.path.join(pathInfo["acml"],"ifort64/lib")]', # what to substitute for deleted path items
'append': True, # whether new entries append to existing ${env}
os.path.join(pathInfo["acml"],"ifort64/lib")]', # what to substitute for deleted path items
'append': True, # whether new entries append to existing ${env}
},
{'activate': 'pathInfo["lapack"]',
'substitute':'[pathInfo["lapack"]]', # what to substitute for deleted path items
'append': True, # whether new entries append to existing ${env}
'substitute':'[os.path.join(pathInfo["lapack"],"lib"),\
os.path.join(pathInfo["lapack"],"lib64")]', # what to substitute for deleted path
'append': True, # whether new entries append to existing ${env}
},
{'activate': 'pathInfo["fftw"]',
'substitute':'[os.path.join(pathInfo["fftw"],"lib")]', # what to substitute for deleted path items
'append': True, # whether new entries append to existing ${env}
},
],
}