-
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
dpdk: new recipe #24817
base: master
Are you sure you want to change the base?
dpdk: new recipe #24817
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@wadehunk Can you give this recipe version a try? It builds ok for me locally. I think the issue in CI is related to an old Linux kernel version being used there. |
@valgur Can confirm this builds locally with gcc11-ubuntu22.04 and gcc13-almalinux9. Looks like the ubuntu16 CI image has kernel version 4.18, but installed kernel headers are for v4.4. The compilation error looks like it will need kernel headers >= 4.6. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@AbrilRBS @uilianries @perseoGI The PR should be ready for review but the linter marks it as failing due to a dubious error. Maybe you can review the PR regardless of the CI failure. I tagged you just for visibility, not because it's urgent. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Hi @valgur soon we will introduce a new linter, right now you can ignore that error... |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Conan v1 pipeline ✔️Warning Conan Center will stop receiving updates for Conan 1.x packages soon - please see announcement. All green in build 10 (
Conan v2 pipeline ✔️
All green in build 10 (
|
recipes/dpdk/all/conanfile.py
Outdated
if self.options.with_libarchive: | ||
self.requires("libarchive/3.7.6") | ||
if self.options.with_libbpf: | ||
self.requires("libbpf/1.4.6") |
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.
Hi @valgur!
There is not such version in CCI, could you please check it?
Thank you!
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.
Added a PR for it: #25931. Will revert it for now, though.
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.
Oh I see, I'll take a look at that one thanks
Summary
Changes to recipe: dpdk/24.07
Motivation
DPDK: a set of libraries and drivers for fast packet processing
https://www.dpdk.org/
https://github.com/DPDK/dpdk
Details
Continues from #24801 and fills many gaps in that recipe.