-
Notifications
You must be signed in to change notification settings - Fork 3
feat: rMPP support #58
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: main
Are you sure you want to change the base?
Conversation
docs/recipe-format.md
Outdated
@@ -230,6 +232,8 @@ Should match the upstream name as closely as possible. | |||
The `build()` function runs in the context of a Docker container with the chosen `image`. | |||
This function has access to all the metadata variables declared above, plus the `$arch` variable which contains the name of the architecture the recipe is currently being built for. | |||
The working directory is `$srcdir`, which is populated with all the sources declared in `sources`. | |||
Do note that if you are going to build aarch64 binaries, you must switch to suitable environment variables by sourcing `/opt/x-tools/switch-aarch64.sh`. |
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.
Do note that if you are going to build aarch64 binaries, you must switch to suitable environment variables by sourcing `/opt/x-tools/switch-aarch64.sh`. | |
If you are going to build aarch64 binaries, you must switch to suitable environment variables by sourcing `/opt/x-tools/switch-aarch64.sh`. |
I'm wondering if we go back to just automatically running this switch script now that we have it. How long does it take to run?
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.
0s because it's just setting envvars and nothing more.
No description provided.