An open API service indexing awesome lists of open source software.

https://github.com/equalsraf/winbundle

A nifty tool to find DLL dependencies for your windows binaries
https://github.com/equalsraf/winbundle

Last synced: 9 months ago
JSON representation

A nifty tool to find DLL dependencies for your windows binaries

Awesome Lists containing this project

README

          

Helper to find and bundle DLLs with your Windows binaries.

## Requirements

Either **objdump** or **dumpbin** need to be in your $PATH.

## Usage

List dependencies:

winbundle list file.exe
...

Or **bundle** everything into the same folder

winbundle bundle dist/ file.exe
...

You might want to explicitly pass the sysroot path

winbundle --sysroot /usr/x86_64-w64-mingw32/sys-root/mingw/ list file.exe

System DLLs (e.g. msvcrt.dll) should not be bundled (see SYSLIBS in src/main.rs). If
they are let me know so I can blacklist them.