summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/boost/0001-When-using-soft-float-on-ARM-we-should-not-expect-th.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/boost/boost/0001-When-using-soft-float-on-ARM-we-should-not-expect-th.patch')
-rw-r--r--meta/recipes-support/boost/boost/0001-When-using-soft-float-on-ARM-we-should-not-expect-th.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost/0001-When-using-soft-float-on-ARM-we-should-not-expect-th.patch b/meta/recipes-support/boost/boost/0001-When-using-soft-float-on-ARM-we-should-not-expect-th.patch
new file mode 100644
index 0000000000..bafd5ce001
--- /dev/null
+++ b/meta/recipes-support/boost/boost/0001-When-using-soft-float-on-ARM-we-should-not-expect-th.patch
@@ -0,0 +1,29 @@
1From 9ab0914207e6d0e6b75ce12147c54b96478feb64 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 21 Feb 2017 12:50:35 +0200
4Subject: [PATCH] When using soft-float, on ARM we should not expect the FE_*
5 symbols
6
7Upstream-Status: Pending
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
10---
11 boost/test/execution_monitor.hpp | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/boost/test/execution_monitor.hpp b/boost/test/execution_monitor.hpp
15index f53348a..86252d7 100644
16--- a/boost/test/execution_monitor.hpp
17+++ b/boost/test/execution_monitor.hpp
18@@ -498,7 +498,7 @@ enum masks {
19
20 BOOST_FPE_ALL = MCW_EM,
21
22-#elif defined(BOOST_NO_FENV_H) || defined(BOOST_CLANG) /* *** */
23+#elif defined(BOOST_NO_FENV_H) || defined(BOOST_CLANG) || defined(__ARM_PCS) /* *** */
24 BOOST_FPE_ALL = BOOST_FPE_OFF,
25
26 #else /* *** */
27--
282.11.0
29