I recently received a request via YouTube to help a fellow programmer out, they were having issues building this library against the boost libraries... https://github.com/cryptozoidberg/boolberry
The problem essentially is the lack of transparency in CMake when it looks for boost with it's "FindBoost" functionality, because neither he, nor I build boost with CMake. I personally don't use or like CMake, I do use make however, and am happy to look around in the make files.
So, I did... And there's nothing specifically wrong with this makefile, but it is insisting on looking for boost within the system, not the version built by yourself.
My Solution therefore has been:
sudo apt-get install libboost-all-dev
sudo apt-get install git
sudo apt-get install cmake
cd ~
mkdir c++
cd c++
git clone //https://github.com/cryptozoidberg/boolberry.git
cd boolberry
make -j4
(Note, replace 4 here with as many cores as your PC has available! More cores will speed this build up, and it will take a long while)
And this works fine:
As you can see. However, I did this from my main build machine, which has a whole bunch of additional and historic settings. Which is the most common pitfall for others coming to build your software later, they lack these customisation's.
My build environment: Ubuntu 16.04 Desktop, with the i3 Window Manager (just open a terminal), and I have installed gcc (sudo apt-get install gcc). These are the only steps before running the above script in a terminal window.
I therefore decided to perform a full clean setup of this system in a new Ubuntu 16.04 (64bit) VMware Virtual machine.
From this, I realise I needed to explain how to install the boost libraries, how to set up cmake and how to get git working before the build would work....
You can see this whole process below, please accept my apologies that this was recorded on an extremely slow internet connection, it got smushed during recording over the mobile link, and I've not had chance to re-shoot or edit the video.
As you can see however, the build worked perfectly.
To Muhmad whom asked for this, you'll find the Donate page at the top right!
Thank you- I try intil i get it to work. Ihave 12gb ram.
ReplyDeleteLiterally do as I do, it works :D
DeleteIt worked- had to install on pc and run it. Thank you alot. One last Q. There is a way to build til exe? So i can run booldb on Windows? Thank you☺
ReplyDeleteI've not even looked at the windows instructions, I'd just have a poke around with a Virtual machine again, if I get chance, I'll let you know :)
DeleteHang on... On a PC.. what was it being run on before? What gave the virtual memory error?... (you've peaked my interest)
DeleteI intstalled Linux systemet on a harddrive and it worked- I wonder if can bulid it to EXE so can run the relaese on windows. thank you :)
ReplyDeletegot Erro because i run frist on laptop--
ReplyDeleteHmm, the actual machine should make no difference, you had an out of virtual memory error, which is going to be a full disk... :(
DeleteBut hey ho, you got it working in the end :)
This comment has been removed by the author.
ReplyDeleteyes. now i bulid like a boss on linux- did you look at how to do it on windows? eks this https://github.com/BlockchainDevelopmentCompany/boolberry.
Deletei watched your video on youtube and didnt work for me. thank you.