xref: /petsc/config/examples/arch-ci-linux-opt-cxx-quad.py (revision 6e85cc039ccb92eb657e06ccb8e802e1a84f92c2)
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  '--download-f2cblaslapack=1',
11  '--with-precision=__float128',
12  '--with-clanguage=cxx',
13  ]
14
15if __name__ == '__main__':
16  import sys,os
17  sys.path.insert(0,os.path.abspath('config'))
18  import configure
19  configure.petsc_configure(configure_options)
20