diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 17:43:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-01 21:45:57 +0100 |
commit | ff8fa4cea0c6d1e8e659ebfde5cd3f0cbe50c1f2 (patch) | |
tree | de50332ea8df6ffe9f03058960a83e4a7897eaaf | |
parent | 2ba0fbcdf2bb9c8edb252fc815a4bd146fd766b7 (diff) | |
download | poky-ff8fa4cea0c6d1e8e659ebfde5cd3f0cbe50c1f2.tar.gz |
boost: Ensure native recipes have consistent checksums
When building boost-native on i686, the x86 override isn't applied
unless the target also happens to be x86. Similarly the x86_64 override
is only applied on 64 bit target machines.
Avoid various problems by removing the new problematic configure options
in the native case.
(From OE-Core rev: 5a4fe5a735b16e313e7a33649b4e7764a6888d0c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/boost/boost.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index 7637a4e932..ef16533bab 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc | |||
@@ -32,6 +32,8 @@ BOOST_LIBS = "\ | |||
32 | BOOST_LIBS_append_x86 = " context coroutine" | 32 | BOOST_LIBS_append_x86 = " context coroutine" |
33 | BOOST_LIBS_append_x86-64 = " context coroutine" | 33 | BOOST_LIBS_append_x86-64 = " context coroutine" |
34 | BOOST_LIBS_append_powerpc = " context coroutine" | 34 | BOOST_LIBS_append_powerpc = " context coroutine" |
35 | # need consistent settings for native builds (x86 override not applied for native) | ||
36 | BOOST_LIBS_remove_class-native = " context coroutine" | ||
35 | 37 | ||
36 | # optional libraries | 38 | # optional libraries |
37 | PACKAGECONFIG ??= "locale" | 39 | PACKAGECONFIG ??= "locale" |