Fix for shared fortran libraries on mac (HDFFV-2772).

This commit is contained in:
M. Scot Breitenfeld 2017-05-22 15:45:17 -05:00
parent 2b2a1d605e
commit 97ac37592b

View File

@ -3482,6 +3482,12 @@ chmod 755 tools/src/misc/h5cc
if test "X$HDF_FORTRAN" = "Xyes"; then
chmod 755 fortran/src/h5fc
## tell libtool to pass the correct argument linker, needed only for intel compiler.
case "`uname`" in
Darwin*)
cat libtool | awk '/wl=\"/{c++;if(c==3){sub("wl=\"\"","wl=\"-Wl,\"");c=0}}1' > libtool.tmp && mv libtool.tmp libtool && chmod 755 libtool
;;
esac
fi
if test "X$HDF_CXX" = "Xyes"; then