Skip to content

Commit

Permalink
Boost: correct address model for "s390x" architecture (conan-io#25789)
Browse files Browse the repository at this point in the history
* Update conanfile.py

Added "s390x" to the  _b2_address_model function to return "64".

* Launch CI again

---------

Co-authored-by: Luis Caro Campos <3535649+jcar87@users.noreply.github.com>
  • Loading branch information
2 people authored and OMGtechy committed Dec 31, 2024
1 parent 467a0be commit 50e380a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/boost/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ def _b2_os(self):

@property
def _b2_address_model(self):
if self.settings.arch in ("x86_64", "ppc64", "ppc64le", "mips64", "armv8", "armv8.3", "sparcv9"):
if self.settings.arch in ("x86_64", "ppc64", "ppc64le", "mips64", "armv8", "armv8.3", "sparcv9", "s390x"):
return "64"

return "32"
Expand Down

0 comments on commit 50e380a

Please sign in to comment.