#!/bin/sh # # Copyright by The HDF Group. # All rights reserved. # # This file is part of HDF5. The full HDF5 copyright notice, including # terms governing use, modification, and redistribution, is contained in # the COPYING file, which can be found at the root of the source code # distribution tree, or in https://www.hdfgroup.org/licenses. # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. # # Build HDF5 library by doing configure, make, and tests. # Usage: See USAGE() # Some handy definitions USAGE() { cat <> "$resultfile" 2>&1 if [ $? -ne 0 ]; then echo "error in '$banner'. buildhdf5 aborted." exit 1 fi } # Try locate the SZLIB. # This is a hack because there is no consistent szlib pathname. LOCATE_SZLIB() { # Try to guess what domain I am in. if [ -d /usr/hdf/bin ]; then # I am in an THG host. mydomain=thg elif [ -d /afs/ncsa/projects/hdf/packages ]; then # I am in an NCSA host that has AFS. mydomain=ncsa else mydomain=unknown fi case $mydomain in thg) # THG hosts OS=`uname -s` echo OS=$OS case "$OS" in Linux) case `uname -m` in i686) # 32 bits szlibpaths="/home/packages/szip/static/encoder/Linux2.6-gcc" ;; x86_64) # 64 bits szlibpaths="/home/packages/szip/static/encoder/Linux2.6-x86_64-gcc" ;; *) # Don't know. Give a shot at standard places. szlibpaths="/usr/hdf /usr/local" ;; esac ;; SunOS) szlibpaths="/home/packages/szip/static/encoder/SunOS-5.10" ;; FreeBSD) case `uname -m` in i386) # 32 bits szlibpaths="/home/packages/szip/static/encoder/FreeBSD" ;; amd64) # 64 bits szlibpaths="/home/packages/szip/static/encoder/FreeBSD-64" ;; *) # Don't know. Give a shot at standard places. szlibpaths="/usr/hdf /usr/local" ;; esac ;; *) # Don't know. Give a shot at standard places. szlibpaths="/usr/hdf /usr/local" ;; esac ;; # end of case thg ncsa) # ncsa hosts OS=`uname -s` echo OS=$OS case "$OS" in HP-UX) szlibpaths="/afs/ncsa/projects/hdf/packages/szip_new/HPUX-11.00" ;; Linux) case `uname -m` in i686) szlibpaths="/afs/ncsa/projects/hdf/packages/szip_new/Linux2.4" ;; *) # Don't know. Give a shot at standard places. szlibpaths="/usr/ncsa /usr/sdt" ;; esac ;; SunOS) szlibpaths="/afs/ncsa/projects/hdf/packages/szip_new/SunOS_5.8" ;; *) # Don't know. Give a shot at standard places. szlibpaths="/usr/ncsa /usr/sdt" ;; esac ;; # end of case ncsa unknown) # Unknown domain. Give a shot at the some standard places. szlibpaths="/usr/local" ;; esac # end of case $mydomain echo szlibpaths=$szlibpaths for x in $szlibpaths dummy; do if [ $x != dummy -a -f $x/include/szlib.h -a -f $x/lib/libsz.a ]; then WITH_SZLIB="--with-szlib=$x" break fi done echo WITH_SZLIB="$WITH_SZLIB" } # Configure. Default to do --srcdir. CONFIG() { CMD="$SRCDIR/configure $*" echo $CMD if [ "$NOEXEC" != 'noexec' ]; then $CMD else true # set exit code as 0 fi } # Main body TIMESTAMP trap QUIT 0 # # setup # MAKE=${MAKE:-'gmake'} export MAKE CONFIG_CMD="CONFIG" CONFIG_OP= # configure options CONFIG_ONLY=no # default is configure and build NOEXEC= # default to execute commands SRCDIRLIST=". ../hdf5" # places to look for configure nerror=0 # parse some options while [ $# -gt 0 ]; do case "$1" in -config) # do configure only CONFIG_ONLY=yes ;; -szlib) LOCATE_SZLIB CONFIG_OP="$CONFIG_OP $WITH_SZLIB" ;; -help) USAGE exit 0 ;; -n) NOEXEC='noexec' ;; -srcdir) shift SRCDIRLIST="$1" ;; -cxx) CONFIG_OP="$CONFIG_OP --enable-cxx" ;; -java) CONFIG_OP="$CONFIG_OP --enable-java" ;; -fortran) CONFIG_OP="$CONFIG_OP --enable-fortran" ;; -pp) CONFIG_OP="$CONFIG_OP --enable-parallel" ;; *) # pass it as a configure option CONFIG_OP="$CONFIG_OP $1" ;; esac shift done # Figure out if srcdir is wished. # Make sure we are at the library root level # by checking couple typical files. Not bullet-proof. for SRCDIR in $SRCDIRLIST dummy; do if [ x-$SRCDIR = x-dummy ]; then break fi if [ -d $SRCDIR/src -a -d $SRCDIR/config -a -f $SRCDIR/configure ] then break fi done if [ x-$SRCDIR = x-dummy ]; then echo "Could not find the source dir or configure script. Abort." exit 1 fi # Configure # no configure if already done. if [ ! -f config.status ]; then STEP "Configure HDF5..." "$CONFIG_CMD $CONFIG_OP" "#config" else STEP "Configure Skipped" "echo Configure Skipped" "#config" fi if [ x-$CONFIG_ONLY = x-yes ]; then exit 0 fi # Compile STEP "Make HDF5..." "$MAKE" "#make" # Serial tests STEP "Testing HDF5 serial parts..." "$MAKE check-s" "#test-s" # Parallel tests STEP "Testing HDF5 parallel parts..." "$MAKE check-p" "#test-p" # all done echo "No Errors encountered"