On Tue, Jul 11, 2017 at 4:06 AM, Raffi Enficiaud via Boost-users <boost-users@lists.boost.org> wrote:
Le 11.07.17 à 02:14, Marshall Clow via Boost-users a écrit :

The second release candidates for the 1.65.0 beta release are now
available at:


https://dl.bintray.com/boostorg/beta/1.65.0.beta.1/source/boost_1_65_0_beta1_rc2.7z

https://dl.bintray.com/boostorg/beta/1.65.0.beta.1/source/boost_1_65_0_beta1_rc2.tar.bz2

https://dl.bintray.com/boostorg/beta/1.65.0.beta.1/source/boost_1_65_0_beta1_rc2.tar.gz

https://dl.bintray.com/boostorg/beta/1.65.0.beta.1/source/boost_1_65_0_beta1_rc2.zip

The SHA256 checksums are as follows:

    d54d29568c4e4933cbfe40a292b6cb84a7f68121e34f6a83f7d0f7c652b6b2d8
 boost_1_65_0_beta1_rc2.7z
    092676557513e992347d30dd0cd058fb8af2a401e5da4f4413f5b577852d726b
 boost_1_65_0_beta1_rc2.tar.bz2
    31fa3c807e2205e18f7d5c74f77f540677f7b0937af1e37f595c137e1e87bf84
 boost_1_65_0_beta1_rc2.tar.gz
    83c8d8b76fa9591572226a1a49fd191d76db3011b52b907cbbc8d37d46213bd2
 boost_1_65_0_beta1_rc2.zip


This RC contains a single fix to the stacktrace library.

As always, the release managers would appreciate it if you download
the candidate of your choice and give building it a try. Please report
both success and failure, and anything else that is noteworthy.

Thanks!

-- The release managers

Hi,

I have this error during the build on OSX. Built with:
./b2 cxxflags="-std=c++11 -stdlib=libc++" linkflags="-stdlib=libc++" --without-log --layout=versioned install


...on 14200th target...
common.mkdir bin.v2/libs/fiber/build/darwin-4.2.1/release/threading-multi
common.mkdir bin.v2/libs/fiber/build/darwin-4.2.1/release/threading-multi/numa
darwin.compile.c++ bin.v2/libs/fiber/build/darwin-4.2.1/release/threading-multi/numa/pin_thread.o
libs/fiber/src/numa/pin_thread.cpp:23:10: warning: pin_thread() not supported [-W#pragma-messages]
# pragma message "pin_thread() not supported"
         ^
1 warning generated.
darwin.compile.c++ bin.v2/libs/fiber/build/darwin-4.2.1/release/threading-multi/numa/topology.o
libs/fiber/src/numa/topology.cpp:23:10: warning: topology() not supported [-W#pragma-messages]
# pragma message "topology() not supported"

Given these two messages, I suspect that is deliberate.
I see that too in my tests.

-- Marshall