Skip to content

Commit

Permalink
[CI] DLL Dependency Check - prohibit data chases for LDD
Browse files Browse the repository at this point in the history
* .ci/ci-build.sh: run ldd separately for each binary
  • Loading branch information
jannick0 committed Jul 11, 2023
1 parent 64a0473 commit 3a201c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/ci-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ install_packages() {
list_dll_deps(){
local target="${1}"
echo "$(tput setaf 2)MSYS2 DLL dependencies:$(tput sgr0)"
find "$target" -regex ".*\.\(exe\|dll\)" -print0 | xargs -0 -r ldd | GREP_COLOR="1;35" grep --color=always "msys-.*\|" \
find "$target" -regex ".*\.\(exe\|dll\)" -exec "echo '{}:' && ldd '{}';" | GREP_COLOR="1;35" grep --color=always "msys-.*\|" \
|| echo " None"
}

Expand Down

0 comments on commit 3a201c9

Please sign in to comment.