Skip to content

Commit

Permalink
Fix boost 1.86.0 recipe for x86 arch (#25887)
Browse files Browse the repository at this point in the history
* Fix boost 1.86.0 build for x86 arch

* Fix minor syntax error
  • Loading branch information
adaviding authored Nov 11, 2024
1 parent 41f9b6f commit 496967c
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 @@ -621,7 +621,7 @@ def _stacktrace_from_exception_available(self):
return not self.options.header_only and not self.options.without_stacktrace and self.settings.os != "Windows"
elif Version(self.version) >= "1.86.0":
# https://github.com/boostorg/stacktrace/blob/boost-1.86.0/build/Jamfile.v2#L148
return not self.options.header_only and not self.options.without_stacktrace and self.settings.arch == "x86_64"
return not self.options.header_only and not self.options.without_stacktrace and self._b2_architecture == "x86"

def configure(self):
if self.options.header_only:
Expand Down

0 comments on commit 496967c

Please sign in to comment.