xref: /petsc/config/examples/arch-ci-linux-gcc-quad-64idx-dbg.py (revision 4d09bf9b0504d440531251fc5ded3102cba3b18b)
1#!/usr/bin/env python
2if __name__ == '__main__':
3  import sys
4  import os
5  sys.path.insert(0, os.path.abspath('config'))
6  import configure
7  configure_options = [
8    '--with-cc=/home/petsc/soft/mpich-3.3b1/bin/mpicc',
9    '--with-fc=/home/petsc/soft/mpich-3.3b1/bin/mpif90',
10    '--with-cxx=/home/petsc/soft/mpich-3.3b1/bin/mpicxx',
11    '--with-debugging=yes',
12    'COPTFLAGS=-g -O',
13    'FOPTFLAGS=-g -O',
14    'CXXOPTFLAGS=-g -O',
15    '--with-blaslapack-dir=/home/petsc/soft/f2cblaslapack-3.4.2.q3/lib',
16    '--with-clanguage=c',
17    '--with-shared-libraries=no',
18    '--with-scalar-type=real',
19    '--with-64-bit-indices=yes',
20    '--with-precision=__float128',
21    '--with-sowing=1',
22    '--with-sowing-dir=/home/petsc/soft/sowing-v1.1.25-p1',
23    'DATAFILESPATH=/home/petsc/datafiles',
24    ]
25  configure.petsc_configure(configure_options)
26