Changeset 27760
- Timestamp:
- 05/17/23 16:48:32 (22 months ago)
- Location:
- issm/trunk-jpl/externalpackages/petsc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/externalpackages/petsc/install-3.14-linux-static.sh ¶
r27553 r27760 7 7 VER="3.14.6" 8 8 9 PETSC_DIR= ${ISSM_DIR}/externalpackages/petsc/src# DO NOT CHANGE THIS9 PETSC_DIR="${ISSM_DIR}/externalpackages/petsc/src" # DO NOT CHANGE THIS 10 10 PREFIX="${ISSM_DIR}/externalpackages/petsc/install" # Set to location where external package should be installed 11 11 … … 34 34 # 35 35 cd ${PETSC_DIR} 36 ./config /configure.py \36 ./configure.py \ 37 37 --prefix="${PREFIX}" \ 38 38 --PETSC_DIR="${PETSC_DIR}" \ -
TabularUnified issm/trunk-jpl/externalpackages/petsc/install-3.17-linux-static.sh ¶
r27759 r27760 2 2 set -eu 3 3 4 4 5 ## Constants 6 # 5 7 VER="3.17.4" 6 8 … … 23 25 24 26 # Configure 27 # 28 # NOTE: 29 # - Cannot use --with-fpic option when compiling static libs, 30 # 31 # Cannot determine compiler PIC flags if shared libraries is turned off 32 # Either run using --with-shared-libraries or --with-pic=0 and supply the 33 # compiler PIC flag via CFLAGS, CXXXFLAGS, and FCFLAGS 34 # 25 35 cd ${PETSC_DIR} 26 ./configure .py\36 ./configure \ 27 37 --prefix="${PREFIX}" \ 28 38 --PETSC_DIR="${PETSC_DIR}" \
Note:
See TracChangeset
for help on using the changeset viewer.