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