-
Notifications
You must be signed in to change notification settings - Fork 9
How can I edit ./utils/build.sh so that it 'sees' hdf5.h while running? #145
Comments
Have you tried exporting |
I did try that (to be more precise, I tried adding the following commands before running "./utils/build.sh"):
That seemed to almost work -- much of the compilation ran without obvious error messages. However, there was one error message:
Given the complexity and interdependency of modern bioinformatics software, I'm pretty sure a failure to compile dextract' will make the whole HINGE assembler unreliable. So, what extra command should I be using to make ./utils/build.sh 'see' -lhdf5 via /usr/bin/ld? |
Are you extracting You can just comment out the following two lines from the build.sh file in utils/
DExtractor is a third party software that we use to extract |
Commenting out DEXTRACTOR certainly does eliminate that particular error. |
The |
I am trying to install HINGE on a new machine with ./utils/build.sh. It almost works without obvious errors, but fails to detect or use hdf5.h (which on this computer is at /usr/include/hdf5/serial/hdf5.h).
How can I edit the ./utils/build.sh script so that it will correctly detect and use hdf5.h in this location? Alternatively, is there some bash-shell VARIABLE=/usr/include/hdf5/serial/hdf5.h that I can create and export before running ./utils/build.sh, and that will make things work?
The text was updated successfully, but these errors were encountered: