-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
boost: fix with_stacktrace_backtrace for Macos & MinGW + bump dependencies #5577
Merged
conan-center-bot
merged 9 commits into
conan-io:master
from
SpaceIm:fix/boost-stacktrace
May 23, 2021
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8d92d39
bump zstd
SpaceIm 51b841e
no os.rename
SpaceIm fe3b8e0
allow to build on Macos out of the box
SpaceIm f63e9d8
remove duplicated dl system lib
SpaceIm f4e1766
no stacktrace_addr2line on Windows
SpaceIm 267e68e
completly drop stacktrace_backtrace on Windows
SpaceIm 08870d6
fix system libs for stacktrace components on Windows
SpaceIm 07b39ea
temporary hack for stacktrace with apple-clang
SpaceIm a310eb3
add interface definition for stacktrace on Macos
SpaceIm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not sufficient for MinGW. There is additional logic in
package_info()
when available librarires are checked:So now
boost_stacktrace_addr2line
should be filtered if Windows. But actually it fails anyway with MinGW, becauseboost_stacktrace_backtrace
&boost_stacktrace_basic
are not packaged (or built).Here is the command with all components disabled except stacktrace:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've dropped boost_stacktrace_addr2line, boost_stacktrace_backtrace and boost_stacktrace_basic on Windows, not only Visual Studio. I've tried with MinGW, and these libs are not built, whatever I try to do.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this mingw@Windows or mingw@Linux?
Because I have not been able to build boost for mingw on Windows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MinGW Windows
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, build fails with MinGW and default options, but I've found the component to disable (
fiber
), so that I can test boost recipe with MinGW: #4764 (comment)