[Buildroot] [git commit branch/next] package/boost: fix sparc build
From: Yann E. MORIN <hidden>
Date: 2021-08-28 13:21:59
Subsystem:
the rest · Maintainer:
Linus Torvalds
commit: https://git.buildroot.net/buildroot/commit/?id=ba56bce06552ddb4fc10cf67e9daf13b17f0ad2c branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/next Fix the following build failure on sparc raised since bump to version 1.77.0 in commit d39d8f7cee9b4634e6f490020204f63fae419e8e: ./boost/predef/architecture/sparc.h:37:38: error: missing ')' in expression 37 | # if !defined(BOOST_ARCH_SPARC) && (defined(__sparcv9) || defined(__sparc_v9__) | ^ Fixes: - http://autobuild.buildroot.org/results/c1f15e3a0cefb7e65e5288fb4564d59a3b06a0bd Signed-off-by: Fabrice Fontaine <redacted> Signed-off-by: Yann E. MORIN <redacted> --- package/boost/0001-added-missing-brackets.patch | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+)
diff --git a/package/boost/0001-added-missing-brackets.patch b/package/boost/0001-added-missing-brackets.patch
new file mode 100644
index 0000000000..1a2d5e67ec
--- /dev/null
+++ b/package/boost/0001-added-missing-brackets.patch@@ -0,0 +1,29 @@ +From 1be0e4a2d8db15a405f64a6f65507b87c1be7e1a Mon Sep 17 00:00:00 2001 +From: tkoecker <tkoecker@gmx.net> +Date: Fri, 21 May 2021 16:31:11 +0200 +Subject: [PATCH] added missing brackets (#118) + +[Retrieved from: +https://github.com/boostorg/predef/commit/1be0e4a2d8db15a405f64a6f65507b87c1be7e1a] +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> +--- + include/boost/predef/architecture/sparc.h | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/boost/predef/architecture/sparc.h b/boost/predef/architecture/sparc.h +index d7b94f0..d01605e 100644 +--- a/boost/predef/architecture/sparc.h ++++ b//boost/predef/architecture/sparc.h +@@ -34,10 +34,10 @@ Distributed under the Boost Software License, Version 1.0. + + #if defined(__sparc__) || defined(__sparc) + # undef BOOST_ARCH_SPARC +-# if !defined(BOOST_ARCH_SPARC) && (defined(__sparcv9) || defined(__sparc_v9__) ++# if !defined(BOOST_ARCH_SPARC) && (defined(__sparcv9) || defined(__sparc_v9__)) + # define BOOST_ARCH_SPARC BOOST_VERSION_NUMBER(9,0,0) + # endif +-# if !defined(BOOST_ARCH_SPARC) && (defined(__sparcv8) || defined(__sparc_v8__) ++# if !defined(BOOST_ARCH_SPARC) && (defined(__sparcv8) || defined(__sparc_v8__)) + # define BOOST_ARCH_SPARC BOOST_VERSION_NUMBER(8,0,0) + # endif + # if !defined(BOOST_ARCH_SPARC)
_______________________________________________ buildroot mailing list buildroot@busybox.net http://lists.busybox.net/mailman/listinfo/buildroot