diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-05-22 21:51:16 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-05-24 12:40:47 +0300 |
commit | c2d2b521e83db2c83c64e5dcfb9ea65af9d5732a (patch) | |
tree | a0a79a9da6d8ac3dd191346df2b3183ec69125fd /boost | |
parent | ed74575bb6849cd5547cb320fdee54a52353f038 (diff) |
Seems Apple's Clang has C++11 fully working rvalue references only with libc++
Change-Id: Iad3f984722be648a64490976933e9b2c2b950bdc
Diffstat (limited to 'boost')
-rw-r--r-- | boost/UnpackedTarball_boost.mk | 1 | ||||
-rw-r--r-- | boost/boost.std.move.patch | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/boost/UnpackedTarball_boost.mk b/boost/UnpackedTarball_boost.mk index 274781abd4f9..28ee031cadbe 100644 --- a/boost/UnpackedTarball_boost.mk +++ b/boost/UnpackedTarball_boost.mk @@ -40,6 +40,7 @@ boost_patches += boost_1_44_0-gcc4.8.patch boost_patches += boost.4874.patch boost_patches += boost.loplugin.patch +boost_patches += boost.std.move.patch boost_patches += boost.wundef.patch boost_patches += boost.wshadow.patch diff --git a/boost/boost.std.move.patch b/boost/boost.std.move.patch new file mode 100644 index 000000000000..83badae6c60a --- /dev/null +++ b/boost/boost.std.move.patch @@ -0,0 +1,20 @@ +--- foo/foo/foo/boost/config/compiler/clang.hpp ++++ foo/foo/foo/boost/config/compiler/clang.hpp +@@ -8,6 +8,8 @@ + + // Clang compiler setup. + ++#include <utility> ++ + #if !__has_feature(cxx_exceptions) && !defined(BOOST_NO_EXCEPTIONS) + # define BOOST_NO_EXCEPTIONS + #endif +@@ -108,7 +108,7 @@ + # define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX + #endif + +-#if !__has_feature(cxx_rvalue_references) ++#if !__has_feature(cxx_rvalue_references) || (defined(__APPLE__) && !defined(_LIBCPP_VERSION)) + # define BOOST_NO_CXX11_RVALUE_REFERENCES + #endif + |