thank you, but now it says: "no zlib.h, fatal error", what to do to fix?
How to solve VT tools error on installation "no math.h" file?
How to solve VT tools error on installation "no math.h" file?
I am trying to put it on Linux Mint 18.1 as written in http://genome.sph.umich.edu/wiki/Vt
• 2,599 views
•
link
1 answer
You might be missing glibc components. Try adding the headers and libraries via:
$ sudo apt-get update && sudo apt-get install libc6-dev
This should add libm.a, libm.so, math.h, and other glibc components.
If you have these components installed and compiling still fails, you may need to edit the vt project's Makefile and manually edit the includes (-I) and link (-L) directories to instruct the build tools where headers and libraries are located.
• 0 views
•
link
Log in to answer this question.