xref: /petsc/systems/Apple/OSX/bin/arch-osx-release.py (revision 1ceb14c030f320ad962f864c6f8de98a26bbbaf7)
1#!/usr/bin/python
2if __name__ == '__main__':
3  import sys
4  import os
5  sys.path.insert(0, os.path.abspath('config'))
6  import configure
7# make sure this has the same options as arch-osx.py
8  configure_options = [
9    '--download-mpich',
10    '--with-fc=0',
11    '--with-shared-libraries',
12    '--download-mpich-shared=0',
13    '--with-valgrind=0',
14    '--with-hwloc=0',
15    '--with-debugging=0',
16    '--download-sowing=1',
17    '--download-c2html=1',
18    'PETSC_ARCH=arch-osx-release',
19  ]
20  configure.petsc_configure(configure_options)
21