~ubuntu-branches/ubuntu/warty/petsc/warty

« back to all changes in this revision

Viewing changes to config/linux-gnu-ia64-intel.py

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2004-06-07 13:41:43 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040607134143-92p586zrauvie0le
Tags: 2.2.0-2
* Upstream patch level 2.
* New PETSC_BOPT_EXTRA option for different BOPT and lib names, with _c++
  symlinks only for plain and single (closes: #249617).
* New DEBIAN_DIST=contrib option to link with hypre, parmetis (closes:
  #249619).
* Combined petsc-c and petsc-fortran substvars into petsc-compilers.
* Extra quote in -dev prerm eliminates "too many arguments" problem.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
if __name__ == '__main__':
 
4
    import configure
 
5
 
 
6
    configure_options = [
 
7
        # cannot build shared libraries are our particular test machine
 
8
         '--with-shared=0',
 
9
         '--with-gnu-compilers=0',
 
10
         '--with-mpi=0',
 
11
         '--with-blas-lib=[/usr/lib/libblas.a,/usr/lib/gcc-lib/ia64-redhat-linux/2.96/libg2c.a]',
 
12
         '--with-lapack-lib=/usr/lib/liblapack.a'
 
13
        ]
 
14
 
 
15
    configure.petsc_configure(configure_options)