mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r9833] Purpose: Bug fix
Description: h5fc couldn't create object files Solution: Brought fixes from 1.6 to 1.7 Platforms tested: arabica Misc. update:
This commit is contained in:
parent
fe1fe98f62
commit
f94c6a56ec
@ -169,42 +169,51 @@ for arg in $@ ; do
|
||||
qarg='\"'"$arg"'\"'
|
||||
allargs="$allargs $qarg"
|
||||
;;
|
||||
*)
|
||||
allargs="$allargs $qarg"
|
||||
|
||||
if test -s "$arg"; then
|
||||
ext=`expr "$arg" : '.*\(\..*\)'`
|
||||
|
||||
if test "x$ext" = "x.c"; then
|
||||
do_compile="yes"
|
||||
compile_args="$compile_args $arg"
|
||||
fname=`basename $arg .c`
|
||||
link_objs="$link_objs $fname.o"
|
||||
elif test "x$ext" = "x.o"; then
|
||||
if test "x$dash_c" = "xyes"; then
|
||||
compile_args="$compile_args $arg"
|
||||
else
|
||||
do_link="yes"
|
||||
link_objs="$link_objs $arg"
|
||||
fi
|
||||
else
|
||||
compile_args="$compile_args $arg"
|
||||
link_args="$link_args $arg"
|
||||
fi
|
||||
else
|
||||
compile_args="$compile_args $arg"
|
||||
link_args="$link_args $arg"
|
||||
fi
|
||||
;;
|
||||
*) allargs="$allargs $arg"
|
||||
if [ -s "$arg" ] ; then
|
||||
ext=`expr "$arg" : '.*\(\..*\)'`
|
||||
if [ "$ext" = ".f" -o "$ext" = ".F" -o "$ext" = ".f90" -o \
|
||||
"$ext" = ".for" -o "$ext" = ".FOR" -o "$ext" = ".F90" ] ; then
|
||||
do_compile="yes"
|
||||
compile_args="$compile_args $arg"
|
||||
fname=`basename $arg $ext`
|
||||
link_objs="$link_objs $fname.o"
|
||||
elif [ "$ext" = ".o" ] ; then
|
||||
if test "x$dash_c" = "xyes" ; then
|
||||
compile_args="$compile_args $arg"
|
||||
else
|
||||
do_link="yes"
|
||||
link_objs="$link_objs $arg"
|
||||
fi
|
||||
elif test "x$ext" = "x.a"; then
|
||||
# This is an archive that we're linking in
|
||||
libraries=" $libraries $arg "
|
||||
else
|
||||
compile_args="$compile_args $arg"
|
||||
link_args="$link_args $arg"
|
||||
fi
|
||||
else
|
||||
compile_args="$compile_args $arg"
|
||||
link_args="$link_args $arg"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# It's possible that there isn't a modules flag...
|
||||
fmodules=""
|
||||
if test -n "$F9XMODFLAG"; then
|
||||
fmodules="${F9XMODFLAG}${libdir}"
|
||||
fi
|
||||
|
||||
if test "x$do_compile" = "xyes"; then
|
||||
if test "x$dash_c" != "xyes"; then
|
||||
compile_args="-c $compile_args"
|
||||
fi
|
||||
|
||||
$SHOW $FC $FFLAGS ${F9XSUFFIXFLAG} $compile_args
|
||||
|
||||
$SHOW $FC $FFLAGS ${F9XSUFFIXFLAG} ${fmodules} $compile_args
|
||||
status=$?
|
||||
|
||||
if test "$status" != "0"; then
|
||||
@ -212,12 +221,8 @@ if test "x$do_compile" = "xyes"; then
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
if test "x$do_link" = "xyes"; then
|
||||
# It's possible that there isn't a modules flag...
|
||||
fmodules=""
|
||||
if test -n "$F9XMODFLAG"; then
|
||||
fmodules="${F9XMODFLAG}${libdir}"
|
||||
fi
|
||||
|
||||
# conditionnaly link with the hl library
|
||||
if test "X$HL" = "Xhl"; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user