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