Skip to content

Commit

Permalink
Boost: correct address model for "s390x" architecture (#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 <[email protected]>
  • Loading branch information
pya102 and jcar87 authored Nov 6, 2024
1 parent 13eb3eb commit 33273bd
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 33273bd

Please sign in to comment.