From 4e157c37fa69ecbb88acd09fda5b744627220512 Mon Sep 17 00:00:00 2001 From: Matthew Budd Date: Fri, 7 Aug 2020 14:59:55 -0400 Subject: [PATCH] Added ldd print of gtk fceux executable. --- pipelines/linux_build.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pipelines/linux_build.sh b/pipelines/linux_build.sh index 1bd63034..edb7c49d 100755 --- a/pipelines/linux_build.sh +++ b/pipelines/linux_build.sh @@ -144,6 +144,16 @@ else exit 1; fi +if [ -e $INSTALL_PREFIX/usr/bin/fceux-gtk ]; then + echo '**************************************************************' + echo 'Printing Shared Object Dependencies for fceux-gtk Executable' + echo '**************************************************************' + ldd $INSTALL_PREFIX/usr/bin/fceux-gtk +else + echo "Error: Executable Failed to build: $INSTALL_PREFIX/usr/bin/fceux-gtk"; + exit 1; +fi + echo '**************************************************************' echo 'Printing To Be Packaged Files ' echo '**************************************************************'