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

@ -41,7 +41,12 @@ environment = { 'DAMASK_ROOT':
'append': True, # whether new entries append to existing ${env}
},
{'activate': 'pathInfo["lapack"]',
'substitute':'[pathInfo["lapack"]]', # what to substitute for deleted path items
'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}
},
],