You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed the instructions to build it on github. It wouldn't pull in the libs and link without install ing "g++" and "pkg-config".
I was getting an error compiling file_cache_row.cpp because it wasn't pulling in the math lib for a rounding function. So I added the following include to file_cache_row.h:
#include
After that it compiles with a lot of warnings but builds completely.
The text was updated successfully, but these errors were encountered:
I confirm the comments of JimCooper. Finally succeeded in compiling on Ubuntu 18.04, but with a lot of warnings and tweaking (like including the math.h library, setting the 64bit flag in the Makefile, installing pkg-config manually, etc.).
Given the fact that a lot of Ubuntu users will switch to the newly released 18.04 LTS, it might be worth the effort to polish the installation (and compilation) process for this OS.
I followed the instructions to build it on github. It wouldn't pull in the libs and link without install ing "g++" and "pkg-config".
I was getting an error compiling file_cache_row.cpp because it wasn't pulling in the math lib for a rounding function. So I added the following include to file_cache_row.h:
#include
After that it compiles with a lot of warnings but builds completely.
The text was updated successfully, but these errors were encountered: