libbpf: remove kernel configuration dependency#430
Closed
pdmorrow wants to merge 1 commit intoopenembedded:masterfrom
Closed
libbpf: remove kernel configuration dependency#430pdmorrow wants to merge 1 commit intoopenembedded:masterfrom
pdmorrow wants to merge 1 commit intoopenembedded:masterfrom
Conversation
This dependency introduces a cycle with pahole:
```
kernel --> pahole --> libbpf
^ /
\ /
`------------------<
```
pahole is a build time dependency of the kernel which is required to
generate BTF symbols. The dependency on the kernel configuration is nice
to have but makes using pahole during kernel compile time impossible.
Furthermore this dependency doesn't make sense when building libbpf
purely to ship it via a SDK.
Signed-off-by: Peter Morrow <pemorrow@linux.microsoft.com>
Contributor
|
merged with 4c21b66 |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Aug 20, 2025
Changelog: ========== - openembedded#71 Adding GOA account fails with sonic.net IMAP service - openembedded#81 Support Webflow authentication for Nextcloud - openembedded#162 Cannot add a ProtonMail bridge with IMAP + TLS - openembedded#242 Rename dconf key in gnome-online-accounts settings - openembedded#408 "Account Name" GUI field is a bit ambiguous - openembedded#420 Nextcloud login does not work anymore due to OPTIONS /login request - openembedded#429 Linked online accounts no longer work - openembedded#430 Invalid URI when adding Google account - openembedded#434 Failed to generate a new POT file for the user interface of "gnome- online-accounts" (domain: "po") and some missing files from POTFILES.in - !340 goamsgraphprovider: ensure a valid PresentationIdentity - !345 goadaemon: complete GTasks to avoid a scary debug warning Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This dependency introduces a cycle with pahole:
pahole is a build time dependency of the kernel which is required to
generate BTF symbols. The dependency on the kernel configuration is nice
to have but makes using pahole during kernel compile time impossible.
Furthermore this dependency doesn't make sense when building libbpf
purely to ship it via a SDK.
Signed-off-by: Peter Morrow pemorrow@linux.microsoft.com