Closed jjallaire closed 2 years ago
Yeah, I'm not super familiar with Rust on Windows, but I can look into it. If you want to contribute PRs as well I'm open to that
This is all we had to do to enable this in our project: https://github.com/quarto-dev/quarto-cli/commit/a8dfb3c694b1e608605e7154368994b85ab76dfc
Note that this will no-op on other platforms.
Okay, I'll try that 🤔
@jjallaire I added your proposed changes to the latest binary builds. I assume this problem should be solved now, but I'm not sure how to test, so you can reopen if it still poses issues
Yes, that does indeed do the trick -- thanks!!!
We are using deno_dom in software we distribute on Windows and just had a user report that they couldn't load within Windows Sandbox due to a missing vcruntime140.dll. I traced that dependency through all of our binaries and found it here in deno_dom:
I believe that the Rust linker is adding this dependency as a matter of course when using the VC toolchain. It looks like it is possible to build with a static dependency though: https://crates.io/crates/static_vcruntime
It would great to build w/o this dependency as I'm sure this may snag others.