xref: /petsc/config/examples/arch-ci-linux-gcc-quad-64idx-dbg.py (revision ffeef943c8ee50edff320d8a3135bb0c94853e4c)
1#!/usr/bin/env python3
2
3import os
4petsc_hash_pkgs=os.path.join(os.getenv('HOME'),'petsc-hash-pkgs')
5
6configure_options = [
7  '--package-prefix-hash='+petsc_hash_pkgs,
8  '--with-debugging=yes',
9  'COPTFLAGS=-g -O',
10  'FOPTFLAGS=-g -O',
11  'CXXOPTFLAGS=-g -O',
12  '--with-clanguage=c',
13  '--with-shared-libraries=0',
14  '--with-single-library=0',
15  '--with-scalar-type=real',
16  '--with-64-bit-indices=yes',
17  '--with-precision=__float128',
18  '--download-mpich',
19  '--download-f2cblaslapack',
20  '--with-strict-petscerrorcode',
21  '--with-coverage',
22]
23
24if __name__ == '__main__':
25  import sys,os
26  sys.path.insert(0,os.path.abspath('config'))
27  import configure
28  configure.petsc_configure(configure_options)
29