xref: /petsc/config/examples/arch-ci-freebsd-cxx-cmplx-64idx-dbg.py (revision 3fc23ce8277e00a65c4b1be6e2b4535b56ba7978)
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=1',
9  'COPTFLAGS=-g -O',
10  'FOPTFLAGS=-g -O',
11  'CXXOPTFLAGS=-g -O',
12  '--with-clanguage=cxx',
13  '--with-scalar-type=complex',
14  '--with-64-bit-indices=1',
15  '--download-mpich',
16  '--download-bison',
17  '--download-revolve=1',
18  ]
19
20if __name__ == '__main__':
21  import sys,os
22  sys.path.insert(0,os.path.abspath('config'))
23  import configure
24  configure.petsc_configure(configure_options)
25