> 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 ;
On 5 January 2017 at 18:42, Steven Watanabe <watanabesj@gmail.com> wrote: > That will have the same problem. The bug > is at a pretty low level. It will trigger > regardless of how you specify the paths.
Hi Edward, Steven,
indeed, replacing the -SBZIP2... and -sZLIB... lines with the suggested entries in user-config.jam gives me the same problem.
In the meantime I've followed the problem down to libs/iostreams/build/Jamfile.v2 - here is a simplified version of it that causes the same error:
$ cat ~/user-config.jam # local installation of bzip2 using bzip2 : 1.0.6 : <include>/home/fwyzard/src/boost/bzip2-1.0.6 <search>/home/fwyzard/src/boost/bzip2-1.0.6 ;
# local installation of zlib using zlib : 1.2.10 : <include>/home/fwyzard/src/boost/zlib-1.2.10 <search>/home/fwyzard/src/boost/zlib-1.2.10 ;