-
Notifications
You must be signed in to change notification settings - Fork 4
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
Upgrade to Conan 2 #55
Conversation
Fixes #54.
I got some build errors related to Boost.Fibers that I couldn't quite figure out, so rather than try to fix them, I simply removed the explicit dependency on Boost. Libcosim no longer uses Boost.Fibers, and everything we used it for here could be done with stdlib functionality from Note that there is still an implicit dependency on Boost, and this PR depends on open-simulation-platform/libcosim#753, which should be merged first. |
requires = ( | ||
"libcosim/0.10.2@osp/stable" | ||
) | ||
"libcosim/0.10.3@osp/testing-bugfix_transitive-libs-boost", |
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.
Maybe this have been changed to libcosim/0.10.3@osp/stable
before merging.
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.
Oops! I've pushed a hotfix to master
now. (Please give it a quick check.)
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.
Looks like my hotfix broke master. :( I guess the issue is that the upstream fix in open-simulation-platform/libcosim#753 is in libcosim master
, but not in any release yet, so it's not in the stable
channel. I don't know what the right way to fix this is. Revert all changes to libcosimc master
and reopen this PR again, or make libcosimc master
depend on the libcosim testing
channel which tracks the master
branch?
This reverts commit 305246c.
Fixes #54.
This depends on open-simulation-platform/libcosim#747. (Once that PR has been merged, the version specification of the
libcosim
requirement should be changed so it no longer points to theosp/testing-feature...
branch.)I've added
shared
andfPIC
options, which seem to be rather standard for library packages these days. (Previously, we only built the shared library version.)