xref: /petsc/systems/Apple/OSX/bin/arch-osx-debug.py (revision bebe2cf65d55febe21a5af8db2bd2e168caaa2e7)
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    'PETSC_ARCH=arch-osx-debug',
16  ]
17  configure.petsc_configure(configure_options)
18