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