source: issm/trunk-jpl/externalpackages/petsc/install-3.7-mac.sh@ 24427

Last change on this file since 24427 was 24427, checked in by jdquinn, 5 years ago

CHG: Using system copies of BLAS and LAPACK (works locally)

  • Property svn:executable set to *
File size: 934 bytes
Line 
1#!/bin/bash
2set -eu
3
4
5## Constants
6#
7VER="3.7.6"
8
9# Download source
10$ISSM_DIR/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/petsc-lite-${VER}.tar.gz" "petsc-${VER}.tar.gz"
11
12# Unpack source
13tar -zxvf petsc-$VER.tar.gz
14
15# Cleanup
16rm -rf install src
17mkdir install src
18
19# Move source to 'src' directory
20mv petsc-$VER/* src/
21rm -rf petsc-$VER
22
23# Configure
24cd src
25./config/configure.py \
26 --prefix="${ISSM_DIR}/externalpackages/petsc/install" \
27 --PETSC_DIR="${ISSM_DIR}/externalpackages/petsc/src" \
28 --with-mpi-dir="${ISSM_DIR}/externalpackages/mpich/install" \
29 --with-debugging=0 \
30 --with-valgrind=0 \
31 --with-x=0 \
32 --with-ssl=0 \
33 --with-shared-libraries=1 \
34 --download-metis=1 \
35 --download-parmetis=1 \
36 --download-scalapack=1 \
37 --download-mumps=1
38
39# Compile and install
40if [ $# -eq 0 ]; then
41 make
42 make install
43else
44 make -j $1
45 make -j $1 install
46fi
47
48# Return to initial directory
49cd ..
Note: See TracBrowser for help on using the repository browser.