Skip to content

Commit 2afbce5

Browse files
authored
Merge pull request #9724 from microsoft/main
2 parents d6574c6 + 0c2b40b commit 2afbce5

File tree

3 files changed

+50
-6
lines changed

3 files changed

+50
-6
lines changed

Extension/CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# C/C++ for Visual Studio Code Change Log
1+
# C/C++ for Visual Studio Code Changelog
22

3-
## Version 1.12.1 (pre-release): August 11, 2022
4-
##
5-
* Add Doxygen comment generation via command, context menu, code action or typing.[#5683](https://github.com/microsoft/vscode-cpptools/issues/5683)
3+
## Version 1.12.1 (pre-release): August 15, 2022
4+
5+
## New Features
6+
* Add Doxygen comment generation via command, context menu, code action, or typing. [#5683](https://github.com/microsoft/vscode-cpptools/issues/5683)
67

78
## Enhancements
89
* Enable auto-formatting of lines that are changed by code analysis fixes. [#9322](https://github.com/microsoft/vscode-cpptools/issues/9322)
@@ -14,9 +15,12 @@
1415
* Fix C++20 IntelliSense parsing bugs. [#7446](https://github.com/microsoft/vscode-cpptools/issues/7446), [#9215](https://github.com/microsoft/vscode-cpptools/issues/9215)
1516
* Fix crash when tag parsing files containing certain string literals. [#9538](https://github.com/microsoft/vscode-cpptools/issues/9538)
1617
* Fix incorrect semantic tokens with templated operator overloads. [#9556](https://github.com/microsoft/vscode-cpptools/issues/9556)
18+
* Fix `llvm-project` parser crash on file: `clang/test/parser/parser_overflow.c`. [#9653](https://github.com/microsoft/vscode-cpptools/issues/9653)
1719
* Fix tag parsing of classes and enums with attributes. [#9672](https://github.com/microsoft/vscode-cpptools/issues/9672)
1820
* Add PID to the extended remote process picker. [PR #9673](https://github.com/microsoft/vscode-cpptools/pull/9673)
21+
* Fix `llvm-project` parser crash on file: `libcxx/test/support/test.support/make_string_header.pass.cpp`. [#9679](https://github.com/microsoft/vscode-cpptools/issues/9679)
1922
* Fix unintended generation of `nul.d` file when querying clang or gcc, when compiler arguments include dependency generation arguments. [9707](https://github.com/microsoft/vscode-cpptools/issues/9707)
23+
* Fix issue with stuck database icon when an excluded file is open on launch or when the database is reset.
2024

2125
## Version 1.12.0 (pre-release): July 27, 2022
2226
## Enhancements

Extension/README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,30 @@
44

55
[![Badge](https://aka.ms/vsls-badge)](https://aka.ms/vsls)
66

7-
The C/C++ extension adds language support for C/C++ to Visual Studio Code, including features such as IntelliSense and debugging.
7+
The C/C++ extension adds language support for C/C++ to Visual Studio Code, including [editing (IntelliSense)](https://code.visualstudio.com/docs/cpp/cpp-ide) and [debugging](https://code.visualstudio.com/docs/cpp/cpp-debug) features.
8+
9+
## Pre-requisites
10+
C++ is a compiled language meaning your program's source code must be translated (compiled) before it can be run on your computer. VS Code is first and foremost an editor, and relies on command-line tools to do much of the development workflow. The C/C++ extension **does not include a C++ compiler or debugger**. You will need to install these tools or use those already installed on your computer.
11+
* C++ compiler pre-installed
12+
* C++ debugger pre-installed
13+
14+
<br/>
15+
16+
Here is a list of compilers and architectures per platform officially supported by the extension. These are reflected by the available [IntelliSense modes](https://code.visualstudio.com/docs/cpp/configure-intellisense-crosscompilation#_intellisense-mode) from the extension's IntelliSense configuration. Note that support for other compilers may be limited.
17+
18+
Platform | Compilers | Architectures
19+
:--- | :--- | :---
20+
Windows | MSVC, Clang, GCC | x64, x86, arm64, arm
21+
Linux | Clang, GCC | x64, x86, arm64, arm
22+
macOS | Clang, GCC | x64, x86, arm64
23+
24+
For more information about installing the required tools or setting up the extension, please follow the tutorials below.
25+
<br/>
26+
<br/>
827

928
## Overview and tutorials
1029
* [C/C++ extension overview](https://code.visualstudio.com/docs/languages/cpp)
30+
* [Introductory Videos](https://code.visualstudio.com/docs/cpp/introvideos-cpp)
1131

1232
C/C++ extension tutorials per compiler and platform
1333
* [Microsoft C++ compiler (MSVC) on Windows](https://code.visualstudio.com/docs/cpp/config-msvc)

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,30 @@
44

55
[![Badge](https://aka.ms/vsls-badge)](https://aka.ms/vsls)
66

7-
The C/C++ extension adds language support for C/C++ to Visual Studio Code, including features such as IntelliSense and debugging.
7+
The C/C++ extension adds language support for C/C++ to Visual Studio Code, including [editing (IntelliSense)](https://code.visualstudio.com/docs/cpp/cpp-ide) and [debugging](https://code.visualstudio.com/docs/cpp/cpp-debug) features.
8+
9+
## Pre-requisites
10+
C++ is a compiled language meaning your program's source code must be translated (compiled) before it can be run on your computer. VS Code is first and foremost an editor, and relies on command-line tools to do much of the development workflow. The C/C++ extension **does not include a C++ compiler or debugger**. You will need to install these tools or use those already installed on your computer.
11+
* C++ compiler pre-installed
12+
* C++ debugger pre-installed
13+
14+
<br/>
15+
16+
Here is a list of compilers and architectures per platform officially supported by the extension. These are reflected by the available [IntelliSense modes](https://code.visualstudio.com/docs/cpp/configure-intellisense-crosscompilation#_intellisense-mode) from the extension's IntelliSense configuration. Note that support for other compilers may be limited.
17+
18+
Platform | Compilers | Architectures
19+
:--- | :--- | :---
20+
Windows | MSVC, Clang, GCC | x64, x86, arm64, arm
21+
Linux | Clang, GCC | x64, x86, arm64, arm
22+
macOS | Clang, GCC | x64, x86, arm64
23+
24+
For more information about installing the required tools or setting up the extension, please follow the tutorials below.
25+
<br/>
26+
<br/>
827

928
## Overview and tutorials
1029
* [C/C++ extension overview](https://code.visualstudio.com/docs/languages/cpp)
30+
* [Introductory Videos](https://code.visualstudio.com/docs/cpp/introvideos-cpp)
1131

1232
C/C++ extension tutorials per compiler and platform
1333
* [Microsoft C++ compiler (MSVC) on Windows](https://code.visualstudio.com/docs/cpp/config-msvc)

0 commit comments

Comments
 (0)