Skip to content

Commit

Permalink
add objdump for win
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcb committed Feb 3, 2025
1 parent cbeac2d commit 8843fc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,6 @@ jobs:
echo "Converted .def files to .lib for Windows."
- name: Dump lib dependencies
if: ${{ matrix.os != 'win' }}
run: |
cd gmp-${GMP_VERSION}/.libs
case "$TARGET" in
Expand All @@ -295,6 +294,9 @@ jobs:
ios-*)
ar -t ${{ env.GMP_SO }}
;;
win-*)
${HOST}-objdump -x ${{ env.GMP_SO }} | grep NEEDED
;;
linux-* | android-*)
objdump -x ${{ env.GMP_SO }} | grep NEEDED
;;
Expand Down

0 comments on commit 8843fc5

Please sign in to comment.