summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/boost
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-08-26 16:26:28 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-28 11:31:21 +0100
commit270a33863e1e221461f85fa6f6657c462db849a1 (patch)
treeadd24a7e864f52fefb0f91aac0e56ea1dec02109 /meta/recipes-support/boost/boost
parent601c222f867bf3316ee9bdbee6f9eccb000c0042 (diff)
downloadpoky-270a33863e1e221461f85fa6f6657c462db849a1.tar.gz
boost: update to 1.71.0
Some notes: - bjam bootstrap scripts were changed, and the patch for that had to be adjusted. tools/build/src/engine/build.sh now supports an --debug option which the bjam-native recipe can use to get the debug build of b2. - a related patch was added to address a speed regression with the debug version of bjam - gcc.jam patch had to be refreshed because boost added more "cpu-flags" lines. - since 1.70.0, boost includes new cmake config files which are packaged in ${PN}-dev now so they make it into the SDK. (although 1.71.0 is needed to fix some bugs in them) (From OE-Core rev: 810aded01fc2ae2c27c2573135c20947453e50c6) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/boost/boost')
-rw-r--r--meta/recipes-support/boost/boost/0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch15
1 files changed, 10 insertions, 5 deletions
diff --git a/meta/recipes-support/boost/boost/0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch b/meta/recipes-support/boost/boost/0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch
index 8944cb37b4..68d6e6417f 100644
--- a/meta/recipes-support/boost/boost/0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch
+++ b/meta/recipes-support/boost/boost/0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch
@@ -1,4 +1,4 @@
1From 3e4eb02eb5951058bc6f8dffbf049eb189df8291 Mon Sep 17 00:00:00 2001 1From f4d3fad43d67808d71325ba0df1457555b9a0086 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 18 Dec 2018 15:42:57 +0100 3Date: Tue, 18 Dec 2018 15:42:57 +0100
4Subject: [PATCH] Don't set up arch/instruction-set flags, we do that ourselves 4Subject: [PATCH] Don't set up arch/instruction-set flags, we do that ourselves
@@ -6,15 +6,16 @@ Subject: [PATCH] Don't set up arch/instruction-set flags, we do that ourselves
6Upstream-Status: Inappropriate 6Upstream-Status: Inappropriate
7Signed-off-by: Christopher Larson <chris_larson@mentor.com> 7Signed-off-by: Christopher Larson <chris_larson@mentor.com>
8Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> 8Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
9
9--- 10---
10 tools/build/src/tools/gcc.jam | 128 ---------------------------------- 11 tools/build/src/tools/gcc.jam | 132 ----------------------------------
11 1 file changed, 128 deletions(-) 12 1 file changed, 132 deletions(-)
12 13
13diff --git a/tools/build/src/tools/gcc.jam b/tools/build/src/tools/gcc.jam 14diff --git a/tools/build/src/tools/gcc.jam b/tools/build/src/tools/gcc.jam
14index c57c773f..28618fb1 100644 15index b9bb9cf2a..c7e3cf3fe 100644
15--- a/tools/build/src/tools/gcc.jam 16--- a/tools/build/src/tools/gcc.jam
16+++ b/tools/build/src/tools/gcc.jam 17+++ b/tools/build/src/tools/gcc.jam
17@@ -1152,131 +1152,3 @@ local rule cpu-flags ( toolset variable : architecture : instruction-set + : 18@@ -1180,135 +1180,3 @@ local rule cpu-flags ( toolset variable : architecture : instruction-set + :
18 <architecture>$(architecture)/<instruction-set>$(instruction-set) 19 <architecture>$(architecture)/<instruction-set>$(instruction-set)
19 : $(values) ; 20 : $(values) ;
20 } 21 }
@@ -144,5 +145,9 @@ index c57c773f..28618fb1 100644
144-cpu-flags gcc OPTIONS : power : rios2 : -mcpu=rios2 ; 145-cpu-flags gcc OPTIONS : power : rios2 : -mcpu=rios2 ;
145-cpu-flags gcc OPTIONS : power : rsc : -mcpu=rsc ; 146-cpu-flags gcc OPTIONS : power : rsc : -mcpu=rsc ;
146-cpu-flags gcc OPTIONS : power : rs64a : -mcpu=rs64 ; 147-cpu-flags gcc OPTIONS : power : rs64a : -mcpu=rs64 ;
148-cpu-flags gcc OPTIONS : s390x : z196 : -march=z196 ;
149-cpu-flags gcc OPTIONS : s390x : zEC12 : -march=zEC12 ;
150-cpu-flags gcc OPTIONS : s390x : z13 : -march=z13 ;
151-cpu-flags gcc OPTIONS : s390x : z14 : -march=z14 ;
147-# AIX variant of RS/6000 & PowerPC 152-# AIX variant of RS/6000 & PowerPC
148-toolset.flags gcc AROPTIONS <address-model>64/<target-os>aix : "-X64" ; 153-toolset.flags gcc AROPTIONS <address-model>64/<target-os>aix : "-X64" ;