xref: /petsc/config/examples/arch-ci-linux-without-fc.py (revision 6a98f8dc3f2c9149905a87dc2e9d0fedaf64e09a)
1#!/usr/bin/env python
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-fc=0',
9  'COPTFLAGS=-g -O',
10  #'FOPTFLAGS=-g -O',
11  'CXXOPTFLAGS=-g -O',
12  '--with-shared-libraries=1'
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