Skip to content

Commit 20f9990

Browse files
Add pre-requisites to readme (#9722)
1 parent f5d711b commit 20f9990

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

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)