Skip to content

Commit

Permalink
Copy blacklisted libraries into AppImage that we really need
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanvolz committed Oct 4, 2023
1 parent cd955ab commit a8be07e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ RESULT=$?
# copy Soapy modules into their expected path in the AppDir
cp -R "$PREFIX"/lib/SoapySDR ./AppDir/usr/lib/SoapySDR

# copy blacklisted libraries that we really need because of library dependence
# on newer versions
cp "$PREFIX"/lib/libgcc_s.so.1 ./AppDir/usr/lib/
cp "$PREFIX"/lib/libstdc++.so.6 ./AppDir/usr/lib/
cp "$PREFIX"/lib/libusb-1.0.so.0 ./AppDir/usr/lib/

# finally make the AppImage
./appimagetool-x86_64.AppImage AppDir/

Expand Down

0 comments on commit a8be07e

Please sign in to comment.