summaryrefslogtreecommitdiffstats
path: root/tools/misc/h5cc.in
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2004-12-07 15:40:44 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2004-12-07 15:40:44 (GMT)
commit9f45ccfae3975efc9ce7fb49fa345ed0c5a5cd24 (patch)
tree6562359d91b127bac39cef4ead78add55088d60c /tools/misc/h5cc.in
parent49546098705f9c4febb2004bf5f043297ed51fa9 (diff)
downloadhdf5-9f45ccfae3975efc9ce7fb49fa345ed0c5a5cd24.zip
hdf5-9f45ccfae3975efc9ce7fb49fa345ed0c5a5cd24.tar.gz
hdf5-9f45ccfae3975efc9ce7fb49fa345ed0c5a5cd24.tar.bz2
[svn-r9628] Purpose:
modified h5cc to link with the high level library (libhdf5_hl) Description: added libhdf5_hl.a to the list of libarries to link with Solution: Platforms tested: linux Misc. update:
Diffstat (limited to 'tools/misc/h5cc.in')
-rwxr-xr-xtools/misc/h5cc.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/misc/h5cc.in b/tools/misc/h5cc.in
index 88adcd8..7f3c094 100755
--- a/tools/misc/h5cc.in
+++ b/tools/misc/h5cc.in
@@ -248,7 +248,7 @@ fi
if test "x$do_link" = "xyes"; then
shared_link=""
- libraries=" $libraries -lhdf5 "
+ libraries=" $libraries -lhdf5_hl -lhdf5 "
link_args="$link_args -L${libdir}"
case "$kind" in
@@ -272,14 +272,17 @@ if test "x$do_link" = "xyes"; then
fi
if test "x$USE_SHARED_LIB" != "xyes"; then
- # The "-lhdf5" flag is in here already...This is a static compile,
- # though, so change it to the static version (.a) of the library.
+ # The "-lhdf5" & "-lhdf5_hl" flags are in here already...This is a static
+ # compile though, so change it to the static version (.a) of the library.
new_libraries=""
for lib in $libraries; do
case "$lib" in
-lhdf5)
new_libraries="$new_libraries ${libdir}/libhdf5.a"
;;
+ -lhdf5_hl)
+ new_libraries="$new_libraries ${libdir}/libhdf5_hl.a"
+ ;;
*)
new_libraries="$new_libraries $lib"
;;