-
Notifications
You must be signed in to change notification settings - Fork 207
layer.conf: Update to whinlatter (5.3) layer/release series #897
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
base: master
Are you sure you want to change the base?
Changes from all commits
450f8ee
b6f5901
dd3afe4
b7dca08
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ inherit native | |
|
||
DEPENDS = "clang-native cmake-native ninja-native" | ||
|
||
S = "${WORKDIR}/git" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unfortunately this will make the layer only compatible with Whinlatter, and with none of the others.
But still thinking if there is some other solution. The same for the cbindgen recipe. (This comment is only valid for the Firefox layer. The Chromium folks might have a very different opinion about this) |
||
|
||
SRC_URI = "gitsm://github.com/WebAssembly/wasi-sdk.git;protocol=https;branch=main" | ||
SRC_URI += "file://0001-disable-exceptions-and-bulk-memory.patch" | ||
|
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.
I believe that this
S
declaration can be removed altogether to make it work on all Yocto versions. I'm almost sure that the recipe is happy with whatever the default value is, I just most probably generated this recipe with pipoe or similar, and didn't remove it. (Though I will try to test this theory soon)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.
Nope, I was wrong, it's a load-bearing variable :(
Then I think this should be also something to the same effect as for the wasi-sdk and cbindgen recipes to maintain compatibility, unless you (or anyone else) have a better idea.
Uh oh!
There was an error while loading. Please reload this page.
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.
Meanwhile I got a better idea for this particular recipe:
remove
SRC_URI*
(except for sha256),S
,RDEPENDS
, and addpypi
to the inherits. It should make it work in all versions, without specifying anything extra.