金庆的专栏

  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  423 随笔 :: 0 文章 :: 454 评论 :: 0 Trackbacks
# Visual Studio 2019 Compiler Hangs

(金庆的专栏 2021.7)

Discovered by my colleague Shen Yichai:
```
Share a interesting MS Build bug:
For file a.cpp, enable optimization for Win64 or XSX.
The MSBuild always compiling without error and ending (infinite compile).
The PS5 (clang) does not have this issue.
```

The simplified code:
```
struct Tag
{
    int v;
};

void Goo(Tag* r, Tag* a)
{
    r->v = a->v;
}

void Foo(Tag* pos0, Tag* pos)
{
    for (int j = 0; j < 4; j++)
    {
        if (j == 0) {
            for (int i = 0; i < 8; i++) {
                Goo(pos0++, pos);
                Goo(pos0++, pos);
            }
        }
        else {
            for (int i = 0; i < 8; i++) {
                Goo(pos0++, pos);
                Goo(pos0++, pos);
            }
        }
    }
}

int main()
{
    Foo(nullptr, nullptr);
}
```

The default release configuration can build correctly.
But if "Properties -> C/C++ -> Optimization -> Whole Program optimization" (/GL) of file or project is changed to "No",
the compilation will take a long time as 5 minutes.

```
Microsoft Visual Studio Community 2019
Version 16.9.5
VisualStudio.16.Release/16.9.5+31229.75
Microsoft .NET Framework
Version 4.8.04084
```
posted on 2021-07-31 15:16 金庆 阅读(252) 评论(0)  编辑 收藏 引用 所属分类: 1. C/C++

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理