xref: /petsc/config/examples/arch-ci-linux-gcc-pkgs-opt.py (revision 76be6f4ff3bd4e251c19fc00ebbebfd58b6e7589)
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-clanguage=c',
9  '--with-shared-libraries=yes',
10  '--with-debugging=no',
11  '--download-mpich',
12  '--download-mpich-device=ch3:sock',
13  '--download-metis',
14  '--download-parmetis',
15  '--download-scalapack',
16  '--download-mumps',
17  '--download-zlib',
18  '--download-hdf5',
19  '--download-netcdf',
20  '--download-pnetcdf',
21  '--download-exodusii',
22  '--download-ml',
23  '--download-suitesparse',
24  '--download-triangle',
25  '--download-chaco',
26  '--download-ctetgen',
27  '--download-cmake',
28  '--download-amrex',
29  '--download-hypre',
30  '--download-ks',
31  '--with-ssl=1',
32]
33
34if __name__ == '__main__':
35  import sys,os
36  sys.path.insert(0,os.path.abspath('config'))
37  import configure
38  configure.petsc_configure(configure_options)
39