Take care to run each required Start menu and pacman command, especially Step 7, when you will install the actual Mingw-w64 toolset ( pacman -S -needed base-devel mingw-w64-x86_64-toolchain). You can download the latest installer from the MSYS2 page or use this link to the installer.įollow the Installation instructions on the MSYS2 website to install Mingw-w64. We will install Mingw-w64 via MSYS2, which provides up-to-date native builds of GCC, Mingw-w64, and other helpful C++ tools and libraries. If you are running VS Code on another platform, you can read the C++ tutorials, which cover C++ configurations for Linux and macOS.
MinGW is a popular, free toolset for Windows.
#How to write c code on windows 10 how to
If you don't have a compiler installed, in the example below, we describe how to install the Minimalist GNU for Windows (MinGW) C++ tools (compiler and debugger). Note: If you would prefer a full Integrated Development Environment (IDE), with built-in compilation, debugging, and project templates (File > New Project), there are many options available, such as the Visual Studio Community edition. You can check availability of your C++ tools by opening the Integrated Terminal ( ⌃` (Windows, Linux Ctrl+`)) in VS Code and trying to directly run the compiler.Ĭhecking for the GCC compiler g++: g++ -versionĬhecking for the Clang compiler clang: clang -version Make sure your compiler executable is in your platform path ( %PATH on Windows, $PATH on Linux and macOS) so that the C/C++ extension can find it. Most Linux distributions have the GNU Compiler Collection (GCC) installed and macOS users can get the Clang tools with Xcode. Some platforms, such as Linux or macOS, have a C++ compiler already installed. Check with your instructors or colleagues for guidance on installing the recommended C++ toolset (compiler, debugger, project system, linter). There may already be a C++ compiler and debugger provided by your academic or work development environment. You will need to install these tools or use those already installed on your computer. The C/C++ extension does not include a C++ compiler or debugger. VS Code is first and foremost an editor, and relies on command-line tools to do much of the development workflow.