# -*- shell-script -*- # # Copyright by The HDF Group. # Copyright by the Board of Trustees of the University of Illinois. # 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 files COPYING and Copyright.html. COPYING can be found at the root # of the source code distribution tree; Copyright.html can be found at the # root level of an installed copy of the electronic HDF5 document set and # is linked from the top-level documents page. It can also be found at # http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have # access to either file, you may request a copy from help@hdfgroup.org. # This file is part of the HDF5 build script. It is processed shortly # after configure starts and defines, among other things, flags for # the various compile modes. # # See BlankForm in this directory for details. # The default compiler is `gcc' if test "X-" = "X-$CC"; then CC=gcc CC_BASENAME=gcc fi . $srcdir/config/gnu-flags # The default Fortran 90 compiler if test "X-" = "X-$F9X"; then F9X=g95 F9X_BASENAME=g95 fi # Figure out the F9X_BASENAME tmpfile=/tmp/cmpver.$$ ( $F9X -v; $F9X -V) >$tmpfile 2>&1 if grep 'g95' $tmpfile > /dev/null; then F9X_BASENAME=g95 CFLAGS="$CFLAGS -DH5_G95" fi rm -f $tmpfile # # HDF5 integers # # R_LARGE is the number of digits for the bigest integer supported. # R_INTEGER is the number of digits in INTEGER # # (for the AIX architechture) # R_LARGE=18 R_INTEGER=9 HADDR_T='SELECTED_INT_KIND(R_LARGE)' HSIZE_T='SELECTED_INT_KIND(R_LARGE)' HSSIZE_T='SELECTED_INT_KIND(R_LARGE)' HID_T='SELECTED_INT_KIND(R_INTEGER)' SIZE_T='SELECTED_INT_KIND(R_INTEGER)' OBJECT_NAMELEN_DEFAULT_F=-1 case $F9X_BASENAME in g95) F9XSUFFIXFLAG="" FFLAGS="$FFLAGS " FSEARCH_DIRS="-I./ -I../src" DEBUG_FFLAGS="-g" PROD_FFLAGS="-O" PROFILE_FFLAGS="-g -pg" f9x_flags_set=yes here ;; esac