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
We are setting LD_LIBRARY_PATH to point to the install dir to allow binaries (and test) to found our build library.
But when cross-compiling to native_dyn for musl (at least), python itself uses it and try to load libz (and such). But it cannot as libraries use different libc.
This is not a problem when we do a "full" cross-compiling as they are different arch. But here, we are same arch, different libc.
The text was updated successfully, but these errors were encountered:
We are setting
LD_LIBRARY_PATH
to point to the install dir to allow binaries (and test) to found our build library.But when cross-compiling to native_dyn for musl (at least), python itself uses it and try to load
libz
(and such). But it cannot as libraries use different libc.This is not a problem when we do a "full" cross-compiling as they are different arch. But here, we are same arch, different libc.
The text was updated successfully, but these errors were encountered: