Showing results for January 2024 - C++ Team Blog

Jan 31, 2024
2
1

Testing the MSVC Compiler Backend

Troy Johnson
Troy Johnson

This post provides a behind-the-scenes look at how we test MSVC's backend, which is responsible for optimization and code generation. Many people worldwide use our compiler and expect it to provide a high-quality experience in terms of correctness (compiled code behaves as written), performance (speed of the compiled code), and throughput (speed...

C++Backend
Jan 30, 2024
0
0

What’s New in vcpkg (January 2024)

Augustin Popa
Augustin Popa

This blog post summarizes changes to the vcpkg package manager as part of the 2024.01.12 release and changes to vcpkg documentation throughout January. This month’s vcpkg release was mainly minor bug fixes, while several new documentation articles were added. Some stats for this period:   vcpkg changelog (2024.01.1...

C++Vcpkg
Jan 22, 2024
0
0

C++ in VS Code: Getting Started & Configuring IntelliSense

Alexandra Kemper
Alexandra Kemper

Ever wondered how you can configure IntelliSense in the C++ Extension  in Visual Studio Code? Or the easiest way to run your C++ code? With the new features added to the C++ extension, configuring IntelliSense and setting up a project is easier than ever. This includes a “Getting Started with C++” walkthrough, configure IntelliSense indicator, and ...

C++Visual Studio Code
Jan 9, 2024
2
2

MSVC ARM64 optimizations in Visual Studio 2022 17.8 

Jiong Wang (ARM Ltd) Hongyon Suauthai (ARM)
Jiong,
Hongyon

Visual Studio 2022 17.8 has been released recently (download it here). While there is already a blog “Visual Studio 17.8 now available!” covering new features and improvements, we would like to share more information with you about what is new for the MSVC ARM64 backend in this blog. In the last couple of months, we have been improving code-generat...

C++Backend
Jan 8, 2024
1
5

#include Diagnostics in Visual Studio

Mryam Girmay
Mryam Girmay

We’re excited to announce that the #include Diagnostics feature is now available in Visual Studio 2022 17.9 Preview 2. This new feature allows you to better understand the behavior of #include directives by providing detailed information on each directive’s references and build time.  To begin utilizing this feature, activate #include di...

C++