paulftw/hiberlite

Build error

iamfarazbaig opened this issue · 1 comments

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:
image

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:
image

I'm very new to C++ and to this project. Please help me out. Thanks

I was able to solve this by adding #include <cstring> in the BeanUpdater.h file.