-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Add libstdc++ runtime switching support #58
Comments
On the same note, can you also make it so that it checks |
Wouldn't an ARM system have all libs as ARM versions? |
This is for the rare case where an x86_64 AppImage that runs on x86_64 systems contains ARM components which need an ARM TBH, a better example would be x86_64 and i386. The AppImage could have an older x86_64 As far as I'm aware no big distribution is actually like this right now. This change woudl mostly be for future-proofing and weird edge-case scenarios like mine. |
I fear it might break edge cases more than it'd help. |
Which edge cases would it break? Right now it chooses whether to use the bundled or system GLibC based on the host system's GLibC version. If it chooses the host system's GLibC but it doesn't have an architecture installed that the bundled version includes, it just fails. Right now I'm forced to workaround this using |
I was thinking of, e.g., running things in, e.g., Box86 and similar solutions. |
This has already been done at: https://github.com/darealshinji/AppImageKit-checkrt/
The text was updated successfully, but these errors were encountered: