Ubuntu开发环境安装

1. Method 1: Auto Install GCC with the Ubuntu Repository

The first recommended option to install GCC is to install either the GCC package directly or the build-essential package containing GCC and many other essential development tools such as make, g++, and dpkg-dev.

To begin the installation, use the following command:
sudo apt install gcc

OR
sudo apt install build-essential

Once installed, verify the installation and check the version using the following command:
gcc --version

2. Method2: Install GCC with Ubuntu via Toolchain PPA

2.1 cmake安装

Step1 ,下载cmake

在如下链接https://cmake.org/files/选择指定的版本下载cmake,如选择https://cmake.org/files/v3.29/
sudo wget https://cmake.org/files/v3.29/cmake-3.29.0.tar.gz

Step2 ,解压
sudo tar -zxvf cmake-3.29.0.tar.gz

Step3 ,安装
cd cmake-3.29.0
sudo ./configure

如果报错Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)

解决方法:sudo apt-get install libssl-dev

Step4 ,编译、安装
sudo make -j8 && sudo make install

2.2. gcc/g++安装

2.2.1 Install g++

Add the Toolchain repository:
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test

OR
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa -y

Install g++ 13 by using the following command:
sudo apt install -y g++-13 gcc-13

Now you can verify that the installation finished successfully by checking g++ version:
g++-13 --version

2.2.2 安装多个版本并在版本间切换

You may need to install multiple GCC compiler versions as a developer or specific user. Follow these steps to configure alternative versions of GCC on your Ubuntu system.

First, install the versions of GCC you need. You can install multiple versions of GCC along with G++ using the following command:
sudo apt install gcc-9 g++-9 gcc-10 g++-10 gcc-11 g++-11 g++-12 gcc-12 g++-13 gcc-13

Once you have installed the necessary versions, use the update-alternatives command to configure the priority of each version. The following example command sets the priority split between GCC 9, GCC 10, and the latest GCC 13.

bash 复制代码
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 --slave /usr/bin/g++ g++ /usr/bin/g++-13 --slave /usr/bin/gcov gcov /usr/bin/gcov-13

sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60 --slave /usr/bin/g++ g++ /usr/bin/g++-10 --slave /usr/bin/gcov gcov /usr/bin/gcov-10

sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 80 --slave /usr/bin/g++ g++ /usr/bin/g++-9 --slave /usr/bin/gcov gcov /usr/bin/gcov-9

The above commands set GCC 13 as the highest priority with a value of 100. However, you can configure the priorities based on your preferences.

To confirm that GCC 13 is the default version on your system, run the following command:
gcc --version

You can reconfigure the default GCC version on your system by using the update-alternatives command. First, use the following command to list the priorities you previously set:
sudo update-alternatives --config gcc

3. Reference

Install g++ 13 on Ubuntu 22.04
How to Install GCC on Ubuntu 24.04, 22.04 or 20.04

相关推荐
leo__5203 分钟前
在Ubuntu中设置开机自动运行(sudo)指令的指南
服务器·ubuntu·postgresql
派阿喵搞电子7 小时前
在UI界面内修改了对象名,在#include “ui_mainwindow.h“没更新
c++·qt·ubuntu·ui
地衣君10 小时前
RISC-V 开发板 + Ubuntu 23.04 部署 open_vins 过程
linux·ubuntu·risc-v
爱学习的小道长12 小时前
Ubuntu Cursor升级成v1.0
linux·运维·ubuntu
EelBarb12 小时前
seafile:ubuntu搭建社区版seafile12.0
linux·运维·ubuntu
Xam_d_LM12 小时前
【Latex】Windows/Ubuntu 绘制 eps 矢量图通用方法(drawio),支持插入 Latex 数学公式
linux·ubuntu·科研·矢量图·drawio
upp16 小时前
【bug】Error: /undefinedfilename in (/tmp/ocrmypdf.io.9xfn1e3b/origin.pdf)
ubuntu·pdf·bug·ghostscript
行云流水剑18 小时前
【学习记录】在 Ubuntu 中将新硬盘挂载到 /home 目录的完整指南
服务器·学习·ubuntu
十五年专注C++开发18 小时前
CMake基础:gcc/g++编译选项详解
开发语言·c++·gcc·g++
藥瓿亭18 小时前
K8S认证|CKS题库+答案| 7. Dockerfile 检测
运维·ubuntu·docker·云原生·容器·kubernetes·cks