Showing results for Linker - C++ Team Blog

Nov 16, 2020
4
0

The Coalition Sees 27.9X Iteration Build Improvement with Visual Studio 2019

David Li
David Li

Visual Studio 2019 v16.8 Preview 3.2 introduces significant build and link time improvements. In this blog post, we detail how the team in The Coalition building Gears 5 tested the compile and link times in three different versions of Visual Studio.

C++performanceGame Development
Mar 25, 2014
0
0

Linker Enhancements in Visual Studio 2013 Update 2 CTP2

Eric Battalio
Eric Battalio

For developer scenarios, linking takes the lion's share of the application's build time. From our investigation we know that the Visual C++ linker spends a large fraction of its time in preparing, merging and finally writing out debug information. This is especially true for non-Whole Program Optimization scenarios. In Visual Studio 2013 Update 2 ...

C++
Oct 29, 2013
1
0

The Visual C++ Linker best practices: Developer Iteration

Ankit Asthana
Ankit Asthana

The time spent in the link phase could be a significant portion of an applications overall build time for most large projects. A user can quickly determine this by adding the '/time' flag to the linker command line. The 'Final: Total time' reports the total time spent in the link phase. There are essentially two primary scenarios to consider when l...

C++
Mar 10, 2011
0
0

Visual Studio 2010 Service Pack 1 General Availability

Diego Dagum - MSFT
Diego Dagum - MSFT

If you guys follow Jason Zander’s (Visual Studio corporate Vice President) blog, you learned two days ago that the Visual Studio 2010 Service Pack 1 whose Beta had been released last December achieved final release stage. Today is generally available (last Tuesday was only for MSDN subscribers). You can get it from here. Let’s summarize...

C++
Apr 1, 2010
0
0

VC++ Tip: Get detailed build throughput diagnostics using MSBuild, compiler and linker

Visual CPP Team
Visual CPP Team

We know that build throughput for applications are a time crunch on developer productivity. We have spent some time on improving linker throughput and other areas in VS2010, and will continue to investigate improving overall build throughput in future releases. In this blog post, we will describe a couple of options to get diagnostics for your pro...

C++
Sep 10, 2009
0
0

Linker throughput

Visual CPP Team
Visual CPP Team

Hello, my name is Chandler Shen, a developer from the Visual C++ Shanghai team.We have made some changes in the upcoming Visual C++ 2010 release to improve the performance of linker. I would like to first give a brief overview of the linker and how we analyze the bottlenecks of current implementation. Later, I will describe the changes we made and ...

C++
Jul 21, 2009
0
0

Linker warning LNK4221, and some tips to avoid it

Visual CPP Team
Visual CPP Team

Hello, my name is Chandler Shen, a developer from Visual C++ Shanghai team. There is some confusion about warning LNK4221 and whether it is safe to ignore it. I would like to give an explanation on when you may encounter this warning and provide tips for some typical scenarios and workarounds. What does LNK4221 mean?   When building static/imp...

C++