From 963d7437f29f03153f39a4d2a39360f18d2fbd07 Mon Sep 17 00:00:00 2001 From: Bruce Emehiser Date: Mon, 11 Oct 2021 12:00:39 -0700 Subject: [PATCH] boost/* Add s390 and s390x support --- recipes/boost/all/conanfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/boost/all/conanfile.py b/recipes/boost/all/conanfile.py index 6b74ffc014c1d..da01ad4159f58 100644 --- a/recipes/boost/all/conanfile.py +++ b/recipes/boost/all/conanfile.py @@ -879,6 +879,8 @@ def _b2_architecture(self): return "mips64" elif str(self.settings.arch).startswith("mips"): return "mips1" + elif str(self.settings.arch).startswith("s390"): + return "s390x" else: return None