xref: /petsc/config/examples/arch-ci-linux-gcc-quad-64idx-dbg.py (revision 5e28bcb6eb89755d887ff19df10fe7e2cb7942ae)
1#!/usr/bin/env python
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=no',
14  '--with-scalar-type=real',
15  '--with-64-bit-indices=yes',
16  '--with-precision=__float128',
17  '--download-mpich',
18  '--download-f2cblaslapack',
19]
20
21if __name__ == '__main__':
22  import sys,os
23  sys.path.insert(0,os.path.abspath('config'))
24  import configure
25  configure.petsc_configure(configure_options)
26