xref: /petsc/config/examples/arch-ci-linux-analyzer.py (revision 6dd63270497ad23dcf16ae500a87ff2b2a0b7474)
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-cc=mpicc',
9  '--with-fc=mpif90',
10  '--with-cxx=mpicxx',
11
12  '--download-sprng=1',
13  '--download-random123=1',
14  '--download-saws=1',
15  '--download-yaml=1',
16  '--download-scalapack=1',
17  '--download-strumpack=1',
18  '--download-mumps=1',
19  '--download-hypre=1',
20  '--download-ctetgen=1',
21  '--download-triangle=1',
22  '--download-triangle-build-exec=1',
23  '--download-p4est=1',
24  '--download-ml=1',
25  '--download-hpddm=1',
26  '--download-spai=1',
27  '--download-radau5=1',
28  #'--download-sundials2=1',
29
30  '--download-make=1',
31  '--download-metis=1',
32  '--download-parmetis=1',
33  '--download-superlu_dist=1',
34  '--download-hdf5=1',
35  '--download-netcdf=1',
36  '--download-pnetcdf=1',
37  '--download-zlib=1',
38  '--download-exodusii=1',
39  ]
40
41if __name__ == '__main__':
42  import sys,os
43  sys.path.insert(0,os.path.abspath('config'))
44  import configure
45  configure.petsc_configure(configure_options)
46