From 9ec2ffda731f539a7b226d7d718f63cafd17f065 Mon Sep 17 00:00:00 2001 From: Tony Theodore Date: Sun, 3 Mar 2019 13:25:03 +1100 Subject: [PATCH] docs: add notes on DLL deps --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 680396c5..2c834007 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,10 @@ various target platforms, which: - x86_64: sjlj Please see [mxe.cc](https://mxe.cc/) for further information and package support matrix. + +## Shared Library Notes +There are several approaches to recursively finding DLL dependencies (alphabetical list): + * [go script](https://github.com/desertbit/gml/blob/master/cmd/gml-copy-dlls/main.go) + * [pe-util](https://github.com/gsauthof/pe-util) packaged with [mxe](https://github.com/mxe/mxe/blob/master/src/pe-util.mk) + * [python script](https://github.com/mxe/mxe/blob/master/tools/copydlldeps.py) + * [shell script](https://github.com/mxe/mxe/blob/master/tools/copydlldeps.md)