h5md / VMD-h5mdplugin

This plugin enables VMD to display data stored in h5 files that are structured according to the H5MD specifications (http://nongnu.org/h5md/)
Other
10 stars 9 forks source link

/usr/bin/ld: cannot find -lh5md #19

Closed frank-stonybrook closed 8 years ago

frank-stonybrook commented 8 years ago

Hi Jonaslandsgesell,

I encountered another problem when I try to run make.

screen shot 2015-10-13 at 21 34 11

Then I use command: ld -lh5md -verbose to figure out what happened. The output is like this:

screen shot 2015-10-13 at 21 35 35

It seems that it couldn't find that file in all possible directories. I guess that the libh5md.so or libh5md.a should be somewhere in the HDF5/lib or HDF5/include. However I couldn't find it in either of them.

Thanks Frank

frank-stonybrook commented 8 years ago

I just find out that the "libh5md.so" file is in the same directory of Makefile, but why it couldn't be find when I run make.

jonaslandsgesell commented 8 years ago

The reason for that should be that there is missing a point (for the currently directory) after the lonesome -L

frank-stonybrook commented 8 years ago

Thanks! It works now