AMDG On 01/05/2017 10:34 AM, Edward Diener wrote:
On 1/5/2017 6:48 AM, Andrea Bocci wrote:
Hi, I'm trying to build custom binaries for boost 1.63 using zlib and bzip2 from a local installation rather than the system ones, following the instructions at
<snip>
but it looks like the build system does not like having the zlib and bzip2 libraries in different folders.
<snip> Try removing the -sBZIP2... and -sZLIB... lines and adding to your userconfig.jam:
using bzip2 : 1.0.6 : <include>full-path-to/bzip2-1.0.6 <search>full-path-to/bzip2-1.0.6 ; using zlib : 1.2.10 : <include>full-path-to/zlib-1.2.10 <search>full-path-to/zlib-1.2.10 ;
That will have the same problem. The bug is at a pretty low level. It will trigger regardless of how you specify the paths. In Christ, Steven Watanabe