-
Notifications
You must be signed in to change notification settings - Fork 28
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
How to use this? #1
Comments
Inside the AppDir create a directory If you used gcc compiled from source you'll have to add the stdc++ library from that compiler version. I should probably add a better description on how to do that. |
By the way if you want to build an AppImage using a app: Aegisub
ingredients:
packages:
#- aegisub-l10n # localisation doesn't work (requires patching the source)
dist: stable
sources:
- deb http://ftp.debian.org/debian/ stable main universe
script:
- DEB=libstdc++6_6.3.0-18_amd64.deb
- wget -O ../$DEB -c "http://ftp.debian.org/debian/pool/main/g/gcc-6/$DEB"
- dpkg-deb -x ../$DEB .
- mkdir -p ./usr/optional/libstdc++
- mv ./usr/lib/x86_64-linux-gnu/libstdc++.so.6* ./usr/optional/libstdc++
- find ./usr -name libstdc++.so.6*-gdb.py -delete
- rm -rf ./AppRun ./usr/lib/x86_64-linux-gnu/x264-10bit
- wget -O AppRun "https://github.com/darealshinji/AppImageKit-checkrt/releases/download/continuous/AppRun-patched-x86_64"
- chmod a+x AppRun |
I think it would still be useful for people to see a real-world example on how to use this, e.g., with Here is an example where I am using it: https://github.com/probonopd/audacity/blob/AppImage/.travis.yml The key lines are:
|
Thanks for the example. I'm looking forward to update the README.md in the next time. However, a pull request is always welcome. ;-) |
Thanks to probonopd/linuxdeployqt@600fc20 it is no longer needed to extract the linuxdeployqt AppImage since it is no longer replacing a pre-existing
|
It's not immediately obvious how to actually use this in conjunction with linuxdeployqt.AppImage to make an AppImage that works with a newer libstdc++ version.
The text was updated successfully, but these errors were encountered: