Skip to content

Commit

Permalink
(#55) Test: print the direct output from ldd
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed May 26, 2024
1 parent c582ddc commit 0585c77
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions linux/Test-Dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Get-ChildItem "$Package/*.so" | Sort-Object -Property Name | ForEach-Object {
throw "ldd returned an exit code $LASTEXITCODE."
}

Write-Output "Output from ldd $($libraryPath):"
Write-Output $output

$libraryNames = $output | ForEach-Object {
$filePath = $_.Trim().Split(' ')[0]
} | Sort-Object
Expand Down

0 comments on commit 0585c77

Please sign in to comment.