I have to use this program Lemur for some h.w but i am having troubles installing it as I have never used Linux. I downloaded cygwin and ran the ./configure which seemingly runs fine.
When I try the make command I'm coming across some issues which I have a hard time interpreting, even after looking around in supposed similar questions.
Needless to say this causes problems when I try the make install command later on.
Any help will be appreciated.
This isn't a make problem. Your code is trying to call a function
computeHash
which is not defined. Likely this means that you've forgotten to#include
some header file, but it could be something else. Find the.h
file wherecomputeHash()
is declared and include it. Since you don't have any errors about files not being found by the compiler, it doesn't seem like a problem of missing/not installed software.