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
- Host: GitHub
- URL: https://github.com/equalsraf/winbundle
- Owner: equalsraf
- License: isc
- Created: 2015-09-18T22:27:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-10T14:29:18.000Z (about 10 years ago)
- Last Synced: 2025-01-16T22:46:51.693Z (over 1 year ago)
- Language: Rust
- Size: 10.7 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.