xref: /petsc/config/examples/arch-ci-linux-pkgs-dbg.py (revision 98d129c30f3ee9fdddc40fdbc5a989b7be64f888)
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-coverage',
9  #'--download-mpich', use system MPI as elemental fails with this
10  '--download-fblaslapack',
11  '--download-hypre',
12  '--download-cmake',
13  '--download-metis',
14  '--download-parmetis',
15  '--download-ptscotch',
16  '--download-suitesparse',
17  '--download-triangle',
18  '--download-superlu',
19  '--download-superlu_dist',
20  '--download-scalapack',
21  '--download-mumps',
22  # '--download-elemental', # disabled since its maxCxxVersion is c++14, but Kokkos-4.0's minCxxVersion is c++17
23  '--download-spai',
24  # '--download-moab', # disabled since its maxCxxVersion is c++14, but Kokkos-4.0's minCxxVersion is c++17
25  '--download-parms',
26  '--download-chaco',
27  '--download-fftw',
28  '--download-pastix',
29  '--download-hwloc',
30  '--download-ctetgen',
31  '--download-netcdf',
32  '--download-hdf5',
33  '--with-zlib',
34  '--download-exodusii',
35  '--download-pnetcdf',
36  '--download-party',
37  '--download-yaml',
38  '--download-ml',
39  '--download-sundials2',
40  '--download-p4est',
41  '--download-eigen',
42  '--download-pragmatic',
43  '--download-mmg',
44  '--download-parmmg',
45  '--download-hpddm',
46  '--download-bamg',
47  '--download-htool',
48  '--download-mfem',
49  '--download-glvis',
50  '--with-opengl',
51  '--download-revolve',
52  '--download-cams',
53  '--download-slepc',
54  '--download-kokkos',
55  '--download-kokkos-kernels',
56  '--with-dmlandau-3d',
57  '--with-strict-petscerrorcode',
58  '--download-mpi4py',
59  '--with-petsc4py',
60  '--with-debugging',
61  ]
62
63if __name__ == '__main__':
64  import sys,os
65  sys.path.insert(0,os.path.abspath('config'))
66  import configure
67  configure.petsc_configure(configure_options)
68