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
Since musl has removed references to "64" lines such as
struct stat64 sb;
Are no longer recognized as in a musl system everything is already 64 bit.
Instead it should look something like this
struct stat sb;
It would be great if you could support the newer versions of musl libc with this in mind. I have attached a patch, which I found from alpine sources, that does get it to compile even on my gentoo system.
Obviously this fix will only benefit musl systems if just applied as is, which isn't beneficial. I would also like to bring attention to issue number #366 which provides a better solution.
Since musl has removed references to "64" lines such as
Are no longer recognized as in a musl system everything is already 64 bit.
Instead it should look something like this
It would be great if you could support the newer versions of musl libc with this in mind. I have attached a patch, which I found from alpine sources, that does get it to compile even on my gentoo system.
musl-lfs64.txt
Hope this helps,
The text was updated successfully, but these errors were encountered: