Visual Studio 2019 Compiler Hangs

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值