474 words
2 minutes
C/C++ coding environment
2024-11-01

Author: Arden/Robin

感謝Arden學弟幫我完成macOS的建置教學(*/ω\*)

Editor#

  • Dev-C++ (includes compiler)
  • Code::Blocks (Windows & Linux only)
  • CP Editor
  • Visual Studio (Windows only & includes compiler)
  • Visual Studio Code
  • Xcode (macOS only)

Setting up gcc/g++#

Windows 10/11#

Installation#

  1. Install & Launch MSYS2

Ensure the Run MSYS2 now box is checked.

image

  1. The MSYS2 terminal will open. Run the following command:
pacman -S --needed base-devel mingw-w64-ucrt-x86_64-toolchain

image

  1. Press Enter

image

  1. Enter Y when asked to proceed with the installation.

Ensure the network is accessible.

Installation Complete!

image

Add PATH#

  1. Search for Edit the system environment variables in the Windows searchbox, and press Enter

image

  1. Environment Variables... -> Path -> Edit...

Screenshot 2024-10-26 154310

  1. Click New and enter the path: C:\msys64\ucrt64\bin

Screenshot 2024-10-24 102445

All Done!

Check g++ installation#

Open cmd and enter the following command:

g++ --version

You should see:

image

Linux (Debian based systems)#

Open the terminal and enter:

sudo apt update
sudo apt upgrade
sudo apt install g++

image

macOS#

Method 1: Installing the Xcode command line tools#

The clang and clang++ compilers come with the Xcode command line tools.

Note that when you run gcc or g++, it’ll actually run clang or clang++.

To install the command line tools, use the following command.

xcode-select --install

This will prompt for confirmation. Click ‘Install’ to begin the download and installation process. You’ll see a confirmation message when installation is complete.

Method 2: Homebrew#

Alternatively, you can install and use the Homebrew package manager to install the gcc compiler.

To install the Homebrew package manager, use the following command.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

You also want to add Homebrew to your PATH.

echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

Homebrew is now installed!

To use Homebrew, restart your current shell to reload the PATH.

exit

You can now use Homebrew to install packages.

To install the gcc compiler, do:

brew install gcc

gcc will now be installed.

Installing a Editor#

Dev-C++ (Windows only)#

Download Dev-C++ from SourceForge Just click next for each option

To create a new source file, do: File -> New -> Source File

image

To run your program, click the compile and run button.

image image

Code::Blocks (Windows only)#

Download from Code::Blocks from the official website

To create a new project, do: File -> New -> Project

image

Files -> C/C++ source -> Go

image

Click next, and select a directory.

image

Click Build and run to run your program.

image

CP Editor#

The CP Editor is designed for Competitive Programming.

To download it, go to the official website

image

Additionally, CP Editor can submit your code to Codeforces automatically.

See the documentation.

Visual Studio#

Visual Studio is a powerful IDE, but it may be overkill for small projects.

Download Visual Studio from Microsoft

Installation#

Open the Visual Studio Installer, and choose Desktop development with C++

image

Creating a CLI project#

Open Visual Studio, and select Create a new project, Console App image

Name your project and choose a location

image

Click Local Windows Debugger to run your code

image

Visual Studio Code#

Download Visual Studio Code from Microsoft

image

Open the Extensions tab, install these 2 extensions

image

Open a folder. image

To create a new file, use: New File....

Screenshot 2024-10-26 155522

Click Run C/C++ file to run your program.

image

Xcode (macOS)#

Xcode is a powerful IDE, but it may be overkill for small projects.

Download Xcode from the App Store.