-
Notifications
You must be signed in to change notification settings - Fork 2.1k
pkg/lwip: fix dependencies when LWIP IPv4 is used #21342
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
pkg/lwip: fix dependencies when LWIP IPv4 is used #21342
Conversation
@mguetschow thanks for |
4124fb6
to
6917a73
Compare
3687efb
to
ba73128
Compare
52dd450
to
5054988
Compare
I checked and with this PR all examples which allows LWIP IPv4 ( Can we move this PR little forward? |
@mguetschow, @crasbe, @benpicco, @miri64, @maribu ... sorry for broadcast ... ... but, can we move this PR little forward? |
I haven't used LWIP yet, so my review can't really assess the reason or logic behind the changes. |
7b64bb7
to
c287309
Compare
I didn't check this with details, but after rebasing to most recent version I have some new errors and this PR name is suspicious ;)
PR #21467 fix this issue! |
03ab9c9
to
156334a
Compare
156334a
to
ae20e07
Compare
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.
Thank you for the patch!
Dear All! Thanks for support during this PR and your valuable comments. |
Contribution description
While working on PR #21333, when I by mistake enable LWIP IPv4, Murdock detected some compilation errors
associated with dependencies (see #21333 (comment), older versions of this automatic reply).
Similar error was observed and fixed for esp board in PR #21316.
This PR fixes this problem and code with
LWIP_IPV4=1
passes all Murdock tests.Testing procedure
Enable LWIP IPv4 in
Makefile
by settingLWIP_IPV4 ?= 1
.All Murdock compilation tests should pass.
Unfortunately, in current master some compilation tests fails.
What is interesting in my environment everything compile without problems (for example, for boards with cpu
qn908x
,samd5x
ornrf52
), so for further work and tests PR labelCI: ready for build
is needed.Issues/PRs references
PR #21316
PR #21333