xref: /petsc/config/examples/arch-ci-linux-64idx-i8-uni.py (revision 7b5fd022a6ba26727040df7457b27566b4c6742d)
1#!/usr/bin/env python3
2
3import os
4petsc_hash_pkgs=os.path.join(os.getenv('HOME'),'petsc-hash-pkgs')
5
6if __name__ == '__main__':
7  import sys
8  import os
9  sys.path.insert(0, os.path.abspath('config'))
10  import configure
11  configure_options = [
12    '--package-prefix-hash='+petsc_hash_pkgs,
13    '--with-64-bit-indices',
14    'FFLAGS=-Wall -ffree-line-length-0 -Wno-unused-dummy-argument -fdefault-integer-8',
15    '--with-mpi=0',
16    '--with-strict-petscerrorcode',
17    '--with-coverage',
18  ]
19  configure.petsc_configure(configure_options)
20