March 25, 2019
https://issues.dlang.org/show_bug.cgi?id=19760

          Issue ID: 19760
           Summary: Windows 10 -m64 completely broken, can't compile/run
                    hello world
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Windows
            Status: NEW
          Severity: enhancement
          Priority: P1
         Component: dmd
          Assignee: nobody@puremagic.com
          Reporter: johnnymarler@gmail.com

Created attachment 1739
  --> https://issues.dlang.org/attachment.cgi?id=1739&action=edit
Verbse DMD Output

--- hello.d
import std.stdio;
void main() { writeln("Hello!"); }


> dmd -m64 hello.d
> hello


A windows pops up with:

    hello.exe - System Error

    The code execution cannot proceed because msvcr100.dll was
    not found. Reinstalling the program may fix this problem.


Note that I do not have Visual Studio installed on this computer.  The compiler is using lld-link.exe to link.  I've attached the verbose compiler output as well.

--