This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xoviat
Recipients Ray Donnelly, barry, eryksun, paul.moore, steve.dower, tim.golden, xoviat, zach.ware
Date 2018-01-14.02:42:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515897774.06.0.467229070634.issue32516@psf.upfronthosting.co.za>
In-reply-to
Content
So the idea here is actually to write a replacement for auditwheel that works on windows. In order to do that, I need to recursively analyze DLL dependencies, randomize the DLL filenames, rewrite the pe header table, and then copy them into the .libs folder.

At that point, I need some mechanism to either preload all of the DLLs or add them to the DLL search path so that extensions can find them (example: the extension will need to load umfpack-gghsa-cp36.dll). If assemblies can accomplish such a task, then I can use them. However the restriction on the number of parent directories is a real problem.

I've benchmarked preloading the DLLs and it's not really ideal.
History
Date User Action Args
2018-01-14 02:42:54xoviatsetrecipients: + xoviat, barry, paul.moore, tim.golden, zach.ware, eryksun, steve.dower, Ray Donnelly
2018-01-14 02:42:54xoviatsetmessageid: <1515897774.06.0.467229070634.issue32516@psf.upfronthosting.co.za>
2018-01-14 02:42:54xoviatlinkissue32516 messages
2018-01-14 02:42:53xoviatcreate