paulftw / hiberlite

C++ ORM for SQLite
BSD 3-Clause "New" or "Revised" License
714 stars 118 forks source link

Build error #37

Closed iamfarazbaig closed 5 years ago

iamfarazbaig commented 5 years ago

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

iamfarazbaig commented 5 years ago

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