summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/files/0002-Don-t-pass-m32-m64-where-it-s-not-supported.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/boost/files/0002-Don-t-pass-m32-m64-where-it-s-not-supported.patch')
-rw-r--r--meta/recipes-support/boost/files/0002-Don-t-pass-m32-m64-where-it-s-not-supported.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/meta/recipes-support/boost/files/0002-Don-t-pass-m32-m64-where-it-s-not-supported.patch b/meta/recipes-support/boost/files/0002-Don-t-pass-m32-m64-where-it-s-not-supported.patch
deleted file mode 100644
index ecf7e550f8..0000000000
--- a/meta/recipes-support/boost/files/0002-Don-t-pass-m32-m64-where-it-s-not-supported.patch
+++ /dev/null
@@ -1,40 +0,0 @@
1From f825634a56b119dfa9d712119a66279cc7635978 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
3Date: Sat, 2 May 2015 14:24:02 +0200
4Subject: [PATCH 2/2] Don't pass -m32/-m64 where it's not supported.
5
6Only PowerPC, SPARC, and x86 do support the -m32 and -m64 compiler options [1].
7
8Rather then excluding all architectures not supporting these options as it is
9done in commit c0634341d9ee2c02d3a55c91dafb988afc066c49 [2], include all
10architectures that do support them.
11
12This will fix building Boost for the SuperH architecture with Buildroot [3].
13
14[1] https://gcc.gnu.org/onlinedocs/gcc/Option-Summary.html
15[2] https://github.com/boostorg/build/commit/c0634341d9ee2c02d3a55c91dafb988afc066c49
16[3] http://autobuild.buildroot.net/results/ccd/ccd5c83963032ba49b1627b1dff39e34a9486943/build-end.log
17
18Upstream-Status: Backport
19Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
20
21---
22 tools/build/src/tools/gcc.jam | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/tools/build/src/tools/gcc.jam b/tools/build/src/tools/gcc.jam
26index eff95ae..2f6af93 100644
27--- a/tools/build/src/tools/gcc.jam
28+++ b/tools/build/src/tools/gcc.jam
29@@ -451,7 +451,7 @@ rule setup-address-model ( targets * : sources * : properties * )
30 else
31 {
32 local arch = [ feature.get-values architecture : $(properties) ] ;
33- if $(arch) != arm && $(arch) != mips1
34+ if $(arch) = power || $(arch) = sparc || $(arch) = x86
35 {
36 if $(model) = 32
37 {
38--
391.7.9.5
40