由以下代码生成的二进制文件可在一台计算机(Windows 8 x64)上完美运行,而在另一台计算机(Windows Server 2012 R2 Standard x64)上崩溃:

import std.stdio;

import vibe.vibe;

void new_request(TCPConnection conn)
{
  writeln("before");

  try
  {
    throw new Exception("Exception");
  }
  catch (Throwable ex)
  {
    writeln(ex.msg);
  }

  writeln("after");
}

void main()
{
  auto f = toDelegate(&new_request);
  listenTCP(1605, f);
  runEventLoop();
}


在Windows 8 x64上输出

before
Exception
after


Windows Server 2012 R2 Standard x64上的输出

before


然后崩溃。

在某些计算机上,似乎无法在listenTCP函数调用的委托中引发任何异常。

这是众所周知的行为吗?是虫子吗?我应该将其报告给vibe.d论坛还是其他地方?

我正在使用DMD 2.068.2,DUB 0.9.24和vibe.d 0.7.24。

dub.json看起来像这样:

{
    "name": "vibe_helper",
    "dependencies": {
        "vibe-d": "==0.7.24"
    },
    "versions": ["VibeCustomMain"]
}

最佳答案

作为vibe.d官方论坛上discussion的结果,似乎此行为与DMD已打开的issue有关。

10-04 19:04