From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] make.sh: Add command to find dependencies Date: Wed, 13 May 2020 11:52:59 +0100 Message-ID: <20200513105259.28975-1-michael.tremer@ipfire.org> In-Reply-To: <112CD7FD-306C-4D86-9C7B-1809A11B0D63@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8016053039024913448==" List-Id: --===============8016053039024913448== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- make.sh | 6 +++++- tools/find-dependencies | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100755 tools/find-dependencies diff --git a/make.sh b/make.sh index 78c4edc90..4acce807f 100755 --- a/make.sh +++ b/make.sh @@ -1993,8 +1993,12 @@ lang) update-contributors) update_contributors ;; +find-dependencies) + shift + exec "${BASEDIR}/tools/find-dependencies" "${BASEDIR}/build" "$@" + ;; *) - echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|= toolchain|update-contributors}" + echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|= toolchain|update-contributors|find-dependencies}" cat doc/make.sh-usage ;; esac diff --git a/tools/find-dependencies b/tools/find-dependencies new file mode 100755 index 000000000..25e6cddea --- /dev/null +++ b/tools/find-dependencies @@ -0,0 +1,32 @@ +#!/bin/bash + +main() { + if [ $# -lt 2 ]; then + echo "${0}: Usage: PATH LIBRARY ..." + return 2 + fi + + local root=3D"${1}" + shift + + if [ ! -d "${root}" ]; then + echo "${0}: ${root}: No such file or directory" + return 1 + fi + + local libraries=3D"$@" + + # Build the regex filter + local filter=3D"(${libraries[*]// /|})" + + local file + for file in $(find "${root}" -xdev -type f -executable); do + if readelf -d "${file}" 2>/dev/null | grep -qE "NEEDED.*\[${filter}\]$"; t= hen + echo "${file}" + fi + done + + return 0 +} + +main "$@" || exit $? --=20 2.12.2 --===============8016053039024913448==--