xref: /petsc/config/examples/arch-ci-linux-ILP64.py (revision d5b43468fb8780a8feea140ccd6fa3e6a50411cc)
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  'COPTFLAGS=-g -O',
9  'FOPTFLAGS=-g -O',
10  'CXXOPTFLAGS=-g -O',
11  '--download-openblas',
12  '--download-openblas-64-bit-blas-indices=1',
13  '--download-openblas-make-options=TARGET=GENERIC',
14  ]
15
16if __name__ == '__main__':
17  import sys,os
18  sys.path.insert(0,os.path.abspath('config'))
19  import configure
20  configure.petsc_configure(configure_options)
21