You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we were to support LoongArch manylinux wheels on PyPI, we must be able to prevent installation of wheels built on a different world than that of the running system.
the multiarch specifiers for both worlds are the same, so we must be able to distinguish by other means. This is likely glibc symbol versions for glibc-based systems, but I think musl-based systems will need something else.
The text was updated successfully, but these errors were encountered:
Or, we can add this check into libc loader (gated with something like a Glibc tunable) and the packages requiring such a check will be able to simply enable it.
Link: pypa/manylinux#1587
If we were to support LoongArch
manylinux
wheels on PyPI, we must be able to prevent installation of wheels built on a different world than that of the running system.Right now, due to:
the multiarch specifiers for both worlds are the same, so we must be able to distinguish by other means. This is likely glibc symbol versions for glibc-based systems, but I think musl-based systems will need something else.
The text was updated successfully, but these errors were encountered: