Build error
iamfarazbaig opened this issue · 1 comments
iamfarazbaig commented
I unzipped and tried to build by using the command : make in the root directory of hiberlite on my Windows 10 machine using cygwin. Initially, i get this error:
Then, as per the error, in the file BeanUpdater.h, I change the line int n=strlen(val);
to int n=mbrlen(val);
Then, when I try to again build, I get this:
I'm very new to C++ and to this project. Please help me out. Thanks
iamfarazbaig commented
I was able to solve this by adding #include <cstring>
in the BeanUpdater.h file.