1
Platform
2
Experience
3
Compiler
4
Configure
5
Download

👋 Welcome! Let's set up your C++ environment

First, we need to know what operating system you're using. We've detected your platform, but you can change it if needed.

đŸĒŸ

Windows

Windows 10/11

🍎

macOS

macOS 10.14+

🐧

Linux

Ubuntu/Debian/Fedora

đŸŽ¯ What's your C++ experience level?

This helps us customize the setup for your needs.

🌱

Beginner

New to C++ programming

  • Simple configuration
  • Detailed instructions
  • Basic debugging setup
🚀

Intermediate

Some C++ experience

  • Standard configuration
  • Advanced debugging
  • Optimization flags
⚡

Advanced

Experienced developer

  • Full customization
  • Performance profiling
  • Custom build tasks

đŸ› ī¸ Choose your C++ compiler

Based on your platform, here are the recommended compilers:

â„šī¸ Compiler Information

Select a compiler to see details

âš™ī¸ Configure your environment

Customize your development setup:

C++ Standard

Additional Extensions

Project Type

Include Sample Code

🎉 Your configuration is ready!

Follow these steps to complete your setup:

1ī¸âƒŖ

Install Compiler

2ī¸âƒŖ

Download Configuration Files

Click the button below to download your personalized VS Code configuration:

3ī¸âƒŖ

Install in VS Code

  1. Open VS Code
  2. Open your C++ project folder
  3. Create a .vscode folder in your project root
  4. Extract the downloaded files into the .vscode folder
  5. Restart VS Code
4ī¸âƒŖ

Test Your Setup

Create a new file called main.cpp and try the sample code:

#include <iostream>

int main() {
    std::cout << "Hello, C++!" << std::endl;
    return 0;
}

Press F5 to build and run your program.

📄 Configuration Preview

// Configuration will appear here

💡 Need Help?