Refactor multi-platform wheel builds for libuuu wrapper#487
Merged
nxpfrankli merged 4 commits intonxp-imx:masterfrom Aug 15, 2025
tjaros:master
Merged
Refactor multi-platform wheel builds for libuuu wrapper#487nxpfrankli merged 4 commits intonxp-imx:masterfrom tjaros:master
nxpfrankli merged 4 commits intonxp-imx:masterfrom
tjaros:master
Conversation
nxpfrankli
reviewed
Aug 14, 2025
Contributor
nxpfrankli
left a comment
There was a problem hiding this comment.
Need your signed-off-by tags for each commit message
nxpfrankli
reviewed
Aug 14, 2025
nxpfrankli
reviewed
Aug 14, 2025
nxpfrankli
reviewed
Aug 14, 2025
nxpfrankli
reviewed
Aug 14, 2025
- added aarch64 linux support - added platform specific build scripts with vcpkg integration Signed-off-by: Tomas Jaros <tomas.jaros@nxp.com>
Signed-off-by: Tomas Jaros <tomas.jaros@nxp.com>
Signed-off-by: Tomas Jaros <tomas.jaros@nxp.com>
Originally, wheels were being built with all dynamic libs included across all different platforms, which made size of the wheel large. Now wheels are built only with the one platform compatible library. Other changes: - Removed setuptools-scm as a runtime dependency, as that's undesirable - Added custom build backend to create py3-none wheels to be compatible with all versions of python Signed-off-by: Tomas Jaros <tomas.jaros@nxp.com>
Contributor
Author
|
I've added commit sign-offs, and put cmake requirement change, tests, ci changes, and wrapper changes into separate patches. |
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.
Description
Refactors build system to properly generate platform-specific wheels for Linux (x86_64/aarch64), macOS (x86_64/arm64), and Windows (x86_64). Wheels now include only the specific dynamic library built for the exact platform and architecture.
Changes:
cibuildwheelfor proper wheel generation