summaryrefslogtreecommitdiff
path: root/xmake/modules/utils/binary
diff options
context:
space:
mode:
authorruki <[email protected]>2025-06-04 22:01:56 +0800
committerruki <[email protected]>2025-06-04 22:01:56 +0800
commit6989184ed0b7e61614d3f41bdbcdac4c6075ac77 (patch)
treec65e9311d3396e2b1facedab72bc7eb33edd51e2 /xmake/modules/utils/binary
parent671ed46ae1719e9f7c34fd49afc23b536ae048ae (diff)
improve deplibs #6523
Diffstat (limited to 'xmake/modules/utils/binary')
-rw-r--r--xmake/modules/utils/binary/deplibs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/utils/binary/deplibs.lua b/xmake/modules/utils/binary/deplibs.lua
index 48002f5d8..0eb8f21b2 100644
--- a/xmake/modules/utils/binary/deplibs.lua
+++ b/xmake/modules/utils/binary/deplibs.lua
@@ -210,7 +210,7 @@ function main(binaryfile, opt)
_get_all_depends_by_readelf
}
if is_host("windows") then
- table.insert(ops, 2, _get_all_depends_by_dumpbin)
+ table.insert(ops, 1, _get_all_depends_by_dumpbin)
elseif is_host("linux", "bsd") then
table.insert(ops, 1, _get_all_depends_by_ldd)
elseif is_host("macosx") then