|
4 | 4 |
|
5 | 5 | [](https://aka.ms/vsls)
|
6 | 6 |
|
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/> |
8 | 27 |
|
9 | 28 | ## Overview and tutorials
|
10 | 29 | * [C/C++ extension overview](https://code.visualstudio.com/docs/languages/cpp)
|
| 30 | +* [Introductory Videos](https://code.visualstudio.com/docs/cpp/introvideos-cpp) |
11 | 31 |
|
12 | 32 | C/C++ extension tutorials per compiler and platform
|
13 | 33 | * [Microsoft C++ compiler (MSVC) on Windows](https://code.visualstudio.com/docs/cpp/config-msvc)
|
|
0 commit comments