xref: /petsc/systems/Apple/OSX/bin/arch-osx-release.py (revision 6187e55b7be868de3dab288e5aecadaea4c1b258)
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',
14*6187e55bSBarry Smith    '--with-hwloc=0',
15d9dc08c3SBarry Smith    '--with-debugging=0',
16d9dc08c3SBarry Smith    'PETSC_ARCH=arch-osx-release',
17d9dc08c3SBarry Smith  ]
18d9dc08c3SBarry Smith  configure.petsc_configure(configure_options)
19