xref: /petsc/config/examples/arch-ci-freebsd-pkgs-opt.py (revision 29b5c1159092c0c4e109657cced02aef37644e8e)
1#!/usr/bin/env python
2
3import os
4petsc_hash_pkgs=os.path.join(os.getenv('HOME'),'petsc-hash-pkgs')
5if not os.path.isdir(petsc_hash_pkgs): os.mkdir(petsc_hash_pkgs)
6
7configure_options = [
8  '--package-prefix-hash='+petsc_hash_pkgs,
9  '--with-debugging=0',
10
11  '--useThreads=0', # for some reason cmake hangs when invoked from configure on bsd?
12  #'-download-fblaslapack=1',
13  '--download-mpich=1',
14  '--download-cmake=1',
15  '--download-metis=1',
16  '--download-parmetis=1',
17  '--download-triangle=1',
18  #'--download-superlu=1',
19  #'--download-superlu_dist=1', disabled as superlu_dist now requires gnumake - and this build tests freebsd-make
20  '--download-scalapack=1',
21  '--download-mumps=1',
22  '--download-parms=1',
23  # no with-cxx-dialect=C++11 support '--download-elemental=1',
24  #'--download-hdf5',
25  '--download-sundials=1',
26  '--download-hypre=1',
27  #'--download-suitesparse=1', requires gnumake
28  '--download-chaco=1',
29  '--download-spai=1',
30  '--download-concurrencykit=1',
31  '--download-revolve=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