Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$env:PATH="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Redist\MSVC\14.29.30036\debug_nonredist\arm64\Microsoft.VC142.DebugCRT;$env:PATH"

Tools

To find dependencies of your .exe, your You can find missing dll using an msys prompt:

Code Block
$ find /c/Program\ Files\ (x86)/ | grep -i ucrtbased.dll | grep arm64

To see dependencies of a given executable, you can use:

LDD

ldd (from cygwin/msys). It does not take into account arm64 arch, so it will only report first dll on your path. By using file, you can verify every dependency.

...