We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think we can speed up the Go and Python builds by using buildkit's target platforms.
Go supports cross-platform building; I'm uncertain if we can do deep-static linking with -extldflags "-static"'.
-extldflags "-static"'
pip supports --platform and --abi flags. Something like:
pip
--platform
--abi
pip install --only-binary=:all: --abi cp39 --platform=manylinux2014_x86_64 --target=/dbg/python/lib/python3.9/site-packages debugpy
The platforms and mappings are listed here: https://github.com/pypa/manylinux
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think we can speed up the Go and Python builds by using buildkit's target platforms.
Go and Delve
Go supports cross-platform building; I'm uncertain if we can do deep-static linking with
-extldflags "-static"'
.Python
pip
supports--platform
and--abi
flags. Something like:pip install --only-binary=:all: --abi cp39 --platform=manylinux2014_x86_64 --target=/dbg/python/lib/python3.9/site-packages debugpy
The platforms and mappings are listed here: https://github.com/pypa/manylinux
The text was updated successfully, but these errors were encountered: