source: issm/trunk-jpl/externalpackages/petsc-dev/src/config/examples/asterix/asterix64-openmpi.py@ 11896

Last change on this file since 11896 was 11896, checked in by habbalf, 13 years ago

petsc-dev : Petsc development code in external packages. Mercurial updates

  • Property svn:executable set to *
File size: 528 bytes
Line 
1#!/usr/bin/env python
2
3configure_options = [
4 #OpenMPI provides broken compilers and expects users to set LD_LIBRARY_PATH - before invoking them
5 'LIBS=-Wl,-rpath,/home/balay/soft/linux64/openmpi-1.4.3/lib',
6 '--with-mpi-dir=/home/balay/soft/linux64/openmpi-1.4.3',
7 '--with-clanguage=cxx',
8 '--with-debugging=0',
9 '--with-log=0',
10 '--with-shared-libraries=1'
11 ]
12
13if __name__ == '__main__':
14 import sys,os
15 sys.path.insert(0,os.path.abspath('config'))
16 import configure
17 configure.petsc_configure(configure_options)
Note: See TracBrowser for help on using the repository browser.