Last change
on this file since 11896 was 11896, checked in by habbalf, 13 years ago |
petsc-dev : Petsc development code in external packages. Mercurial updates
|
-
Property svn:executable
set to
*
|
File size:
503 bytes
|
Line | |
---|
1 | #!/usr/bin/python
|
---|
2 | if __name__ == '__main__':
|
---|
3 | import sys
|
---|
4 | import os
|
---|
5 | sys.path.insert(0, os.path.abspath('config'))
|
---|
6 | import configure
|
---|
7 | configure_options = [
|
---|
8 | '--download-f-blas-lapack=1',
|
---|
9 | '--download-mpich=1',
|
---|
10 | '--with-cc=gcc',
|
---|
11 | '--with-cxx=g++',
|
---|
12 | '--with-clanguage=C++',
|
---|
13 | '--with-scalar-type=complex',
|
---|
14 | '--with-dynamic-loading=1',
|
---|
15 | '--with-shared-libraries=1',
|
---|
16 | '--with-python=1',
|
---|
17 | '--PETSC_ARCH=arch-gxx-complex'
|
---|
18 | ]
|
---|
19 | configure.petsc_configure(configure_options)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.