xref: /petsc/config/examples/arch-ci-freebsd-cxx-cmplx-64idx-dbg.py (revision 4e4bbfaa3814cc83b5851d85be69070845f5653e)
1#!/usr/bin/env python
2
3import os
4petsc_hash_pkgs=os.path.join(os.getenv('HOME'),'petsc-hash-pkgs')
5if not os.path.isdir(petsc_hash_pkgs): os.mkdir(petsc_hash_pkgs)
6
7configure_options = [
8  '--package-prefix-hash='+petsc_hash_pkgs,
9  '--with-debugging=1',
10  'COPTFLAGS=-g -O',
11  'FOPTFLAGS=-g -O',
12  'CXXOPTFLAGS=-g -O',
13  '--with-clanguage=cxx',
14  '--with-scalar-type=complex',
15  '--with-64-bit-indices=1',
16  '--download-mpich',
17  ]
18
19if __name__ == '__main__':
20  import sys,os
21  sys.path.insert(0,os.path.abspath('config'))
22  import configure
23  configure.petsc_configure(configure_options)
24