[1.51.0] release candidates available

Release candidate files for 1.51.0 are available at http://boost.cowic.de/rc/ At this point, the release branch is closed for changes without explicit permission from the release managers. 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. This helps ensure the candidates build OK before we push them out to SourceForge. The files (and associated md5s) are: 6a1f32d902203ac70fbec78af95b3cf8 *boost_1_51_0_rc1.tar.gz 4b6bd483b692fd138aef84ed2c8eb679 *boost_1_51_0_rc1.tar.bz2 ee8112e48088b05c248d68329cd5d908 *boost_1_51_0_rc1.zip e87d3747966ab7e0c9487884326d7d17 *boost_1_51_0_rc1.7z Thanks, --The release managers

Built 32 and 64 bit binaries on windows 7-32 in vc8, vc9, vc10. Links and runs with a sample program on Win7-32 and Win7-64. Tom On Thu, Aug 16, 2012 at 10:29 AM, Marshall Clow <mclow.lists@gmail.com>wrote:
Release candidate files for 1.51.0 are available at http://boost.cowic.de/rc/
At this point, the release branch is closed for changes without explicit permission from the release managers.
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.
This helps ensure the candidates build OK before we push them out to SourceForge.
The files (and associated md5s) are: 6a1f32d902203ac70fbec78af95b3cf8 *boost_1_51_0_rc1.tar.gz 4b6bd483b692fd138aef84ed2c8eb679 *boost_1_51_0_rc1.tar.bz2 ee8112e48088b05c248d68329cd5d908 *boost_1_51_0_rc1.zip e87d3747966ab7e0c9487884326d7d17 *boost_1_51_0_rc1.7z
Thanks,
--The release managers
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Am 17.08.2012 14:54, schrieb Tom Kent:
Built 32 and 64 bit binaries on windows 7-32 in vc8, vc9, vc10. Links and runs with a sample program on Win7-32 and Win7-64.
I've successfully built 32 and 64 bit binaries on win7 with vc10 and vc11 - with one small exception, though: boost::signals fails to build with vc11. Applying this tiny patch keeps vc11 happy and passes the tests just fine. Ciao, Dani Index: boost/signals/detail/named_slot_map.hpp =================================================================== --- boost/signals/detail/named_slot_map.hpp (boost-1_51_0-rc) +++ boost/signals/detail/named_slot_map.hpp (mine) @@ -126,7 +126,7 @@ || slot_ == other.slot_)); } -#if BOOST_WORKAROUND(_MSC_VER, <= 1600) +#if BOOST_WORKAROUND(_MSC_VER, <= 1700) void decrement(); void advance(difference_type); #endif Index: libs/signals/src/named_slot_map.cpp =================================================================== --- libs/signals/src/named_slot_map.cpp (boost-1_51_0-rc) +++ libs/signals/src/named_slot_map.cpp (mine) @@ -24,7 +24,7 @@ typedef slot_container_type::const_iterator const_group_iterator; -#if BOOST_WORKAROUND(_MSC_VER, <= 1600) +#if BOOST_WORKAROUND(_MSC_VER, <= 1700) void named_slot_map_iterator::decrement() { assert(false); } void named_slot_map_iterator::advance(difference_type) { assert(false); } #endif

On Aug 17, 2012, at 11:04 AM, Daniela Engert <dani@ngrt.de> wrote:
Am 17.08.2012 14:54, schrieb Tom Kent:
Built 32 and 64 bit binaries on windows 7-32 in vc8, vc9, vc10. Links and runs with a sample program on Win7-32 and Win7-64.
I've successfully built 32 and 64 bit binaries on win7 with vc10 and vc11 - with one small exception, though: boost::signals fails to build with vc11. Applying this tiny patch keeps vc11 happy and passes the tests just fine.
Ciao, Dani
Index: boost/signals/detail/named_slot_map.hpp =================================================================== --- boost/signals/detail/named_slot_map.hpp (boost-1_51_0-rc) +++ boost/signals/detail/named_slot_map.hpp (mine) @@ -126,7 +126,7 @@ || slot_ == other.slot_)); }
-#if BOOST_WORKAROUND(_MSC_VER, <= 1600) +#if BOOST_WORKAROUND(_MSC_VER, <= 1700) void decrement(); void advance(difference_type); #endif Index: libs/signals/src/named_slot_map.cpp =================================================================== --- libs/signals/src/named_slot_map.cpp (boost-1_51_0-rc) +++ libs/signals/src/named_slot_map.cpp (mine) @@ -24,7 +24,7 @@ typedef slot_container_type::const_iterator const_group_iterator;
-#if BOOST_WORKAROUND(_MSC_VER, <= 1600) +#if BOOST_WORKAROUND(_MSC_VER, <= 1700) void named_slot_map_iterator::decrement() { assert(false); } void named_slot_map_iterator::advance(difference_type) { assert(false); } #endif
Patch applied to trunk in revision 80079. Thanks! -- Marshall Marshall Clow Idio Software <mailto:mclow.lists@gmail.com> A.D. 1517: Martin Luther nails his 95 Theses to the church door and is promptly moderated down to (-1, Flamebait). -- Yu Suzuki

I tried building 32 and 64 bit binaries on win7-32 in the new (just released yesterday) vc11, and had the following failures (appear to be in boost::signals): http://boost.teeks99.com/misc/boost_1_51_0_rc1-vc11-32-cmd-output.txt http://boost.teeks99.com/misc/boost_1_51_0_rc1-vc11-64-cmd-output.txt Tom On Fri, Aug 17, 2012 at 8:54 AM, Tom Kent <lists@teeks99.com> wrote:
Built 32 and 64 bit binaries on windows 7-32 in vc8, vc9, vc10. Links and runs with a sample program on Win7-32 and Win7-64.
Tom
On Thu, Aug 16, 2012 at 10:29 AM, Marshall Clow <mclow.lists@gmail.com>wrote:
Release candidate files for 1.51.0 are available at http://boost.cowic.de/rc/
At this point, the release branch is closed for changes without explicit permission from the release managers.
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.
This helps ensure the candidates build OK before we push them out to SourceForge.
The files (and associated md5s) are: 6a1f32d902203ac70fbec78af95b3cf8 *boost_1_51_0_rc1.tar.gz 4b6bd483b692fd138aef84ed2c8eb679 *boost_1_51_0_rc1.tar.bz2 ee8112e48088b05c248d68329cd5d908 *boost_1_51_0_rc1.zip e87d3747966ab7e0c9487884326d7d17 *boost_1_51_0_rc1.7z
Thanks,
--The release managers
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, On Ubuntu 12.04 x86_64 in gcc-4.7.0, gcc-4.7.1, gcc-4.7.2 20120811 and gcc-4.8.0 20120816 were successful with following command. $ ./bootstrap.sh $ ./b2 --build-type=complete --layout=tagged toolset=gcc-4.x.y However, in today's clang trunk aborted with assertions: seems clang defets. Can anyone try clang 3.1 or earlier? - -- Kohei Takahashi flast@flast.jp (2012/08/16 23:29), Marshall Clow wrote:
Release candidate files for 1.51.0 are available at http://boost.cowic.de/rc/
At this point, the release branch is closed for changes without explicit permission from the release managers.
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.
This helps ensure the candidates build OK before we push them out to SourceForge.
The files (and associated md5s) are: 6a1f32d902203ac70fbec78af95b3cf8 *boost_1_51_0_rc1.tar.gz 4b6bd483b692fd138aef84ed2c8eb679 *boost_1_51_0_rc1.tar.bz2 ee8112e48088b05c248d68329cd5d908 *boost_1_51_0_rc1.zip e87d3747966ab7e0c9487884326d7d17 *boost_1_51_0_rc1.7z
Thanks,
--The release managers
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
-----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (MingW32) iQIcBAEBAgAGBQJQLzE7AAoJEGGyPxPRp/zoWgwQAM1nntBplMU8ZFIk47IcVW1R yY4YDhf8d97BnUiGboHGdrul/cchKbbX8jskUjA6pZ2S+iuaMy3cSkJol/sDrCnB Ak3Oulev2GtEsomPpZU7AdsCB67B0j+kbFnzyXR1GcLVc/84jEBI4UTlVqN2gle7 L7RMxdYHtS/yrppiCxoViqk+ctTNdyrvTre0F7GnUJciHiRjy3VypDw9euhbJDmU wanNAibqk3jqG0pYSC5QRm1L3/UIRNgvNevxidpnbnVI02t6wzk57g2IZT2OvKtc b+SxKhUIqWi8ni3xYtcRLfvtaAHcHqbJzXPpKomIq9E6qW9JEaVXlCtaOcd0wV2C WfaXXSw1PWZsMkIDbzbQ1s0XOQeIxqTLYITdN3gixWLUjVI8XZTNSyVw8NYGZp+T U0h5wk7n8hb9aWFqfbFwsUrElaAnUagzRU2/D9WtYsWdbVCigDxl48yri7SEVsKp OLazGzFufisD76gFV+x7u1C7UshGUDw5gMIu2zjXHFw+svPQCD03a+aX8Hqa/cwX nIkADLEnLy6tgwj22RhvhqHFaquqkJsU2IBN35d7oHvbgJxqoL7QJvyrbKXAvPkG DCZYdp9olAtke0D+LGusRWFmwOC5mUB3d/T3dSGeppH5SQHIptW0H8Ns3ZybgDaq Ap9yU76aYispBA2I0XGF =lH01 -----END PGP SIGNATURE-----

On Mac OSX 10.8 (Mountain Lion) using LLVM-gcc bundled with the command-line tools: All base libraries build fine. However, Quickbook fails to build because 'ld' does not recognize a certain option. (I think it was '--target-os', but I don't exactly remember, and my development computer is currently internet-disabled.) Cromwell D. Enage
participants (5)
-
Cromwell Enage
-
Daniela Engert
-
Kohei Takahashi
-
Marshall Clow
-
Tom Kent