Hi Justin,
Thanks for the response.
Here are some updates:
- I'm only using .bashrc now.
- I took a look at $ISSM_DIR/jenkins/linux64_ross-python. The only thing I changed from this file was the MATLAB path to match mine.
- I followed the general roadmap you provided me with. I didn't have any issues when installing most of the external packages but I came across with an issue while installing petsc.
UNABLE to CONFIGURE with GIVEN OPTIONS (see configure.log for details):
Unable to download FBLASLAPACK
file could not be opened successfully
Downloaded package FBLASLAPACK from: http://ftp.mcs.anl.gov/pub/petsc/externalpackages/fblaslapack-3.4.2.tar.gz is not a tarball.
[or installed python cannot process compressed files]
- If you are behind a firewall - please fix your proxy and rerun ./configure
For example at LANL you may need to set the environmental variable http_proxy (or HTTP_PROXY?) to http://proxyout.lanl.gov
- You can run with --with-packages-dir=/adirectory and ./configure will instruct you what packages to download manually
- or you can download the above URL manually, to /yourselectedlocation/fblaslapack-3.4.2.tar.gz
and use the configure option:
--download-fblaslapack=/yourselectedlocation/fblaslapack-3.4.2.tar.gz
file could not be opened successfully
Downloaded package FBLASLAPACK from: ftp://ftp.mcs.anl.gov/pub/petsc/externalpackages/fblaslapack-3.4.2.tar.gz is not a tarball.
[or installed python cannot process compressed files]
- If you are behind a firewall - please fix your proxy and rerun ./configure
For example at LANL you may need to set the environmental variable http_proxy (or HTTP_PROXY?) to http://proxyout.lanl.gov
- You can run with --with-packages-dir=/adirectory and ./configure will instruct you what packages to download manually
- or you can download the above URL manually, to /yourselectedlocation/fblaslapack-3.4.2.tar.gz
and use the configure option:
--download-fblaslapack=/yourselectedlocation/fblaslapack-3.4.2.tar.gz
*******************************************************************************
I downloaded that file and saved it at $ISSM_DIR/externalpackages/petsc, and added to install-3.7-linux64.sh the last line of the configure section:
#!/bin/bash
set -eu
#Some cleanup
rm -rf install petsc-3.7.6 src
mkdir install src
#Download from ISSM server
$ISSM_DIR/scripts/DownloadExternalPackage.sh 'http://issm.jpl.nasa.gov/files/externalpackages/petsc-lite-3.7.6.tar.gz' 'petsc-3.7.6.tar.gz'
#Untar and move petsc to install directory
tar -zxvf petsc-3.7.6.tar.gz
mv petsc-3.7.6/* src/
rm -rf petsc-3.7.6
#configure
cd src
./config/configure.py \
--prefix="$ISSM_DIR/externalpackages/petsc/install" \
--with-mpi-dir="$ISSM_DIR/externalpackages/mpich/install" \
--PETSC_DIR="$ISSM_DIR/externalpackages/petsc/src" \
--with-debugging=0 \
--with-valgrind=0 \
--with-x=0 \
--with-ssl=0 \
--with-shared-libraries=1 \
--download-metis=1 \
--download-parmetis=1 \
--download-mumps=1 \
--download-scalapack=1 \
--download-fblaslapack=1 \
--with-pic=1 \
--download-fblaslapack=$ISSM_DIR/externalpackages/petsc/fblaslapack-3.4.2.tar.gz
#Compile and intall
make
make install
However, I tried installing petsc again and this message showed up:
UNABLE to CONFIGURE with GIVEN OPTIONS (see configure.log for details):
Unable to download FBLASLAPACK
file could not be opened successfully
Downloaded package FBLASLAPACK from: file:///home/ignacio/research/mars/ISSM_source/trunk/externalpackages/petsc/fblaslapack-3.4.2.tar.gz is not a tarball.
[or installed python cannot process compressed files]
If you are behind a firewall - please fix your proxy and rerun ./configure
For example at LANL you may need to set the environmental variable http_proxy (or HTTP_PROXY?) to http://proxyout.lanl.gov
You can run with --with-packages-dir=/adirectory and ./configure will instruct you what packages to download manually
or you can download the above URL manually, to /yourselectedlocation/fblaslapack-3.4.2.tar.gz
and use the configure option:
--download-fblaslapack=/yourselectedlocation/fblaslapack-3.4.2.tar.gz
*******************************************************************************
Although this package couldn't be installed properly (I think), I continued installing the rest of the external packages with the order specified and their names of installation script. I sourced cd $ISSM_DIR; source etc/environment.sh every time after I installed a package. However, when I ran the very last step cd $ISSM_DIR; autoreconf -ivf; ./configure.sh, I got the same error as before:
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
src/c/Makefile.am:9: error: Libtool library used but 'LIBTOOL' is undefined
src/c/Makefile.am:9: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
src/c/Makefile.am:9: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
src/c/Makefile.am:9: If 'LT_INIT' is in 'configure.ac', make sure
src/c/Makefile.am:9: its definition is in aclocal's search path.
src/mobile/native/Makefile.am:2: error: Libtool library used but 'LIBTOOL' is undefined
src/mobile/native/Makefile.am:2: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
src/mobile/native/Makefile.am:2: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
src/mobile/native/Makefile.am:2: If 'LT_INIT' is in 'configure.ac', make sure
src/mobile/native/Makefile.am:2: its definition is in aclocal's search path.
src/wrappers/javascript/Makefile.am:26: error: Libtool library used but 'LIBTOOL' is undefined
src/wrappers/javascript/Makefile.am:26: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
src/wrappers/javascript/Makefile.am:26: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
src/wrappers/javascript/Makefile.am:26: If 'LT_INIT' is in 'configure.ac', make sure
src/wrappers/javascript/Makefile.am:26: its definition is in aclocal's search path.
src/wrappers/javascript/Makefile.am:29: error: Libtool library used but 'LIBTOOL' is undefined
src/wrappers/javascript/Makefile.am:29: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
src/wrappers/javascript/Makefile.am:29: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
src/wrappers/javascript/Makefile.am:29: If 'LT_INIT' is in 'configure.ac', make sure
src/wrappers/javascript/Makefile.am:29: its definition is in aclocal's search path.
src/wrappers/matlab/Makefile.am:11: error: Libtool library used but 'LIBTOOL' is undefined
src/wrappers/matlab/Makefile.am:11: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
src/wrappers/matlab/Makefile.am:11: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
src/wrappers/matlab/Makefile.am:11: If 'LT_INIT' is in 'configure.ac', make sure
src/wrappers/matlab/Makefile.am:11: its definition is in aclocal's search path.
src/wrappers/matlab/Makefile.am:14: error: Libtool library used but 'LIBTOOL' is undefined
src/wrappers/matlab/Makefile.am:14: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
src/wrappers/matlab/Makefile.am:14: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
src/wrappers/matlab/Makefile.am:14: If 'LT_INIT' is in 'configure.ac', make sure
src/wrappers/matlab/Makefile.am:14: its definition is in aclocal's search path.
src/wrappers/python/Makefile.am:10: error: Libtool library used but 'LIBTOOL' is undefined
src/wrappers/python/Makefile.am:10: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
src/wrappers/python/Makefile.am:10: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
src/wrappers/python/Makefile.am:10: If 'LT_INIT' is in 'configure.ac', make sure
src/wrappers/python/Makefile.am:10: its definition is in aclocal's search path.
autoreconf: automake failed with exit status: 1
bash: ./configure.sh: Permission denied
Just in case, I'm pasting configure.sh and configure.ac:
#MATLAB path
MATLAB_PATH="isaac/bin/MATLAB/R2018b/bin"
#ISSM CONFIGURATION
ISSM_CONFIG='--prefix=$ISSM_DIR \
--disable-static \
--with-matlab-dir=$MATLAB_PATH \
--with-python-dir=/usr \
--with-python-numpy-dir=/home/jenkins/.local/lib/python2.7/site-packages/numpy \
--with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
--with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
--with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi -lmpicxx -lmpifort" \
--with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \
--with-chaco-dir="$ISSM_DIR/externalpackages/chaco/install" \
--with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9 -lgfortran" \
--with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \
--with-numthreads=4 \
--enable-development \
--enable-debugging '
Process this file with autoconf to produce a configure script.
#AUTOCONF
AC_INIT([Ice Sheet System Model (ISSM)],[4.15],[issm@jpl.nasa.gov],[issm],[http://issm.jpl.nasa.gov]) #Initializing configure
AC_CONFIG_AUX_DIR([./aux-config]) #Put config files in aux-config
AC_CONFIG_MACRO_DIR([m4]) #m4 macros are located in m4
m4_include([m4/issm_options.m4])
#print header
AC_MSG_NOTICE(============================================================================)
AC_MSG_NOTICE(= AC_PACKAGE_NAME AC_PACKAGE_VERSION configuration =)
AC_MSG_NOTICE(============================================================================)
#Determine System type and OS
AC_CANONICAL_TARGET
#Compilers
AC_PROG_CC([icc cl icl gcc])
AC_PROG_CPP
AC_PROG_CXX([icpc cl icl g++])
AC_PROG_F77([ifort g77 gfortran])
AC_PROG_FC([ifort gfortran])
#AUTOMAKE
#Initialize automake and declare foreign so that we don't need a ChangeLog, INSTALL, etc
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_HEADERS([./config.h]) #Config file must be config.h
AM_SILENT_RULES([yes]) #Do not show compilation command by default
AM_PROG_AR
#Libtool
LT_INIT
#Run issm_options.m4
ISSM_OPTIONS
#List all Makefiles
AC_CONFIG_FILES([
Makefile
src/Makefile
src/c/Makefile
src/wrappers/Makefile
src/wrappers/python/Makefile
src/wrappers/matlab/Makefile
src/wrappers/javascript/Makefile
src/mobile/Makefile
src/mobile/native/Makefile
src/m/Makefile
])
#End of configure.ac
AC_OUTPUT
The above message error seems to me that there is some definition missing in aclocal.m4.
Just to clarify, I will be working with MATLAB after I compile ISSM.
Thanks a lot for your time and help,
Ignacio