I'm trying to build the boost libraries
as i see at the manual from,
http://www.boost.org/doc/libs/1_62_0/more/getting_started/unix-variants.html#easy-build-and-install
As described at the manual, I'm running the command,
$ ./bootstrap.sh --prefix=path/to/installation/prefix
with --prefix=~/boost-libs, like this,
$ ./bootstrap.sh --prefix=~/boost-libs
so the libs to be placed in my home directory.
After that I'm running,
./b2 install
I'm also tried to run it like this,
./b2 install --prefix=~/boost-libs
But nothing to be placed at 'boost-libs' in my home folder.
- The folder 'boost-libs' is exists in my home folder.
I also tried to run,
$ sudo ./bootstrap.sh
and then
$ sudo ./b2 install
so the installation will go to '/usr/local/lib', and it does work, but not succeeded to install to a custom directory.
Thanks