Closed adoerr closed 2 years ago
@adoerr For the eclipsefdn/eca
check you need to sign the ECA in your Eclipse Account with the E-Mail address that you have used for signing the commits.
@adoerr #21 will abort the build process early if iceoryx cannot be build. With that we should be able to find the root cause of your issue.
I also added a naive clippy fix but I like your one more, so please don't dismiss it when you rebase onto master
@elBoberido thanks for looking into this!
This PR is basically just a quick-and-dirty solution that allowed me to compile iceoryx-rs
somehow. So it is probably best to close this PR and continue with #21.
We can close this PR but it would be nice to get your fix for the recursion issue in the Debug impl. Maybe I can cherry pick from your branch
Closed in favor of #21. Relevant commits are cherry-picked to that PR
Fixes #17
The build issue is not related to
libacl1-dev
.The problem actually seems to be that the current
make_and_install()
function is not dealing with thecpptoml
dependency oficeoryx_posh
correctly.This in turn leads to a failure with the
cmake
configuration oficeoryx_posh
. You can check this by inspecting the./target/iceoryx-install/include/*
folders. Basically theiceoryx_posh
include folder is missing, leading to the error message referenced in the issue.The PR essentially just mimics the recommended way to build
iceoryx
itself. Admittedly this is not ideal in terms of minimal compilation. On the other hand, it seems to work reliably. Please, feel free to optimize!I have also taken the liberty to bump
ICEORYX_VERSION
tov2.0.2
.Pre-Review Checklist for the PR Author
rustfmt
iox-#123-this-is-a-branch
)iox-#42 commit text
)task-list-completed
)Notes for Reviewer
Checklist for the PR Reviewer
Post-review Checklist for the PR Author
References