🌐
Debian
packages.debian.org › sid › libs › gcc-14-base
Debian -- Details of package gcc-14-base in sid
Este paquete contiene los archivos comunes a todos los lenguajes y bibliotecas contenidos en la recopilación del compilador de GNU (GCC).
Debian Packages Search
This site provides you with information about all the packages available in the Debian Package archive · Please contact Debian Webmaster if you encounter any problems
List of sections in "trixie"
Limit to suite: [bullseye] [bullseye-updates] [bullseye-backports] [bookworm] [bookworm-updates] [bookworm-backports] [trixie] [trixie-updates] [trixie-backports] [forky] [sid] [experimental] · Limit to a architecture: [alpha] [amd64] [arm] [arm64] [armel] [armhf] [avr32] [hppa] [hurd-i386] ...
List of sections in "bookworm"
Limit to suite: [bullseye] [bullseye-updates] [bullseye-backports] [bookworm] [bookworm-updates] [bookworm-backports] [trixie] [trixie-updates] [trixie-backports] [forky] [sid] [experimental] · Limit to a architecture: [alpha] [amd64] [arm] [arm64] [armel] [armhf] [avr32] [hppa] [hurd-i386] ...
🌐
Ubuntu
launchpad.net › ubuntu › noble › +package › gcc-14-base
gcc-14-base : Noble (24.04) : Ubuntu
This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC).
🌐
Debian
packages.debian.org › gcc-14-base
Debian -- Package Search Results -- gcc-14-base
sid (unstable) (libs): GCC, the GNU Compiler Collection (base package) 14.3.0-8: alpha amd64 arm64 armel armhf hppa i386 loong64 m68k mips64el ppc64 ppc64el riscv64 s390x sh4 sparc64 x32 14-20240221-2.1 [debports]: ia64
🌐
Ubuntu
launchpad.net › ubuntu › +source › gcc-14
gcc-14 package in Ubuntu
gnueabihf gcc-14-base: GCC, the GNU Compiler Collection (base package) gcc-14-doc: Documentation for the GNU compilers (gcc, gobjc, g++) gcc-14-for-build: GNU C compiler for the build architecture gcc-14-for-host: GNU C compiler for the host ...
🌐
Launchpad
blueprints.launchpad.net › ubuntu › noble › +package › gcc-14-base
gcc-14-base : Noble (24.04) : Ubuntu - Blueprints
This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC).
🌐
Linux Mint Forums
forums.linuxmint.com › board index › main edition support › software & applications
Problem with package gcc-14-base - Linux Mint Forums
April 15, 2025 - I would like to get some understanding of what is going on. It's quite clear: those packages need gcc-14-base, so it is installed. Both are also installed on my system. Notice that gcc-14 is NOT installed. Just the base, not the compiler itself. Only gcc-13 is installed as the compiler for the system.
🌐
GNU
gcc.gnu.org › gcc-14 › changes.html
GCC 14 Release Series — Changes, New Features, and Fixes - GNU Project
April 30, 2026 - C++ module scanning for named modules is now available, based on the format described in P1689R5, Format for describing dependencies of source files. The -fdeps-format=, -fdeps-file=, and -fdeps-target= flags may be used to generate dependency information. In GCC 14 p1689r5 is the only valid argument for -fdeps-format=.
🌐
Debian
packages.debian.org › sid › amd64 › gcc-14-base › download
Debian -- Package Download Selection -- gcc-14-base_14.3.0-14_amd64.deb
/ Packages / sid / gcc-14-base / amd64 / Download · If you are running Debian, it is strongly suggested to use a package manager like aptitude or synaptic to download and install packages, instead of doing so manually via this website. You should be able to use any of the listed mirrors by adding a line to your /etc/apt/sources.list like this: deb http://ftp.de.debian.org/debian sid main ·
🌐
Launchpad
answers.launchpad.net › ubuntu › noble › +package › gcc-14-base
gcc-14-base : Noble (24.04) : Ubuntu - Launchpad Answers
This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC).
Find elsewhere
🌐
UbuntuUpdates
ubuntuupdates.org › package › core › noble › main › updates › gcc-14-base
UbuntuUpdates - Package "gcc-14-base" (noble 24.04)
GCC, the GNU Compiler Collection (base package) · gcc-14 (14.2.0-4ubuntu2~24.04.1) noble; urgency=medium
🌐
Ubuntu
packages.ubuntu.com › noble › gcc-14-base
Ubuntu – Details of package gcc-14-base in noble
Download Source Package gcc-14: [gcc-14_14.2.0-4ubuntu2~24.04.dsc] [gcc-14_14.2.0.orig.tar.gz] [gcc-14_14.2.0-4ubuntu2~24.04.debian.tar.xz] Maintainer: Ubuntu Core developers (Mail Archive) · Please consider filing a bug or asking a question via Launchpad before contacting the maintainer directly
🌐
Debian
packages.debian.org › trixie › gcc-14-base
Debian -- Details of package gcc-14-base in trixie
This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC).
🌐
Pkgs.org
pkgs.org › download › gcc-14-base
Gcc-14-base Download for Linux (deb)
Search and download Linux packages for Adélie, AlmaLinux, Alpine, ALT Linux, Arch Linux, CentOS, Debian, Fedora, KaOS, Mageia, Mint, OpenMandriva, openSUSE, OpenWrt, RHEL, Rocky Linux, Slackware, Solus, Ubuntu and Void Linux distributions
🌐
Debian
packages.debian.org › sid › gcc-14
Debian -- Details of package gcc-14 in sid
dep: gcc-14-base (= 14-20240221-2.1) ... [not ia64, ppc64, riscv64, sh4, x32] dep: gcc-14-hppa-linux-gnu (= 14.3.0-16) [hppa] GNU C compiler for the hppa-linux-gnu architecture ·...
Top answer
1 of 5
20

I'm still on Ubuntu 22.04 LTS but needed g++14. The sudo apt-get gcc-14 did not work for me, as it installed clang++14 for some reason (perhaps a misconfiguration on my part). What did work for me was following the instructions I found at https://www.dedicatedcore.com/blog/install-gcc-compiler-ubuntu/

The steps I took:

sudo apt install build-essential
sudo apt install libmpfr-dev libgmp3-dev libmpc-dev -y
wget https://ftp.gnu.org/gnu/gcc/gcc-14.1.0/gcc-14.1.0.tar.gz
tar -xf gcc-14.1.0.tar.gz
cd gcc-14.1.0
./configure -v --build=$(uname -m)-linux-gnu --host=$(uname -m)-linux-gnu --target=$(uname -m)-linux-gnu --prefix=/usr/local/gcc-14.1.0 --enable-checking=release --enable-languages=c,c++ --disable-multilib --program-suffix=-14.1.0
make
sudo make install

And if you would like to make it the default:

sudo update-alternatives --install /usr/bin/g++ g++ /usr/local/gcc-14.1.0/bin/g++-14.1.0 14
sudo update-alternatives --install /usr/bin/gcc gcc /usr/local/gcc-14.1.0/bin/gcc-14.1.0 14

After that, g++ showed I was running version 14.1.0. I was then able to compile my project that included some c++20/23 features that were not in the previous versions of g++ (chrono/format).

2 of 5
16

GCC-14 (and G++-14) is available in the Universe repository for Ubuntu 24.04, as evident in the Ubuntu Package archive.

It is equally evident that this package is not available for Ubuntu 22.04, so installing this on 22.04 will require some third-party interference, or you have to compile it yourself.

See here on how to enable the Universe repositories.

🌐
Debian
packages.debian.org › testing › gcc-14-x86-64-linux-gnu
Debian -- Details of package gcc-14-x86-64-linux-gnu in forky
dep: gcc-14-base (= 14.3.0-12) [amd64] GCC, the GNU Compiler Collection (base package) dep: gcc-14-x86-64-linux-gnu-base (= 14.3.0-12cross1) [not amd64] GCC, the GNU Compiler Collection (base package) dep: libc6 (>= 2.38) [not i386] GNU C Library: Shared libraries also a virtual package provided ...
🌐
Ubuntu
launchpad.net › ubuntu › noble › +package › gcc-14-powerpc64le-linux-gnu-base
gcc-14-powerpc64le-linux-gnu-base : Noble (24.04) : Ubuntu
gcc-14-powerpc64le-linux-gnu-base · This package contains files common to all languages and libraries contained in the GNU Compiler Collection (GCC). gcc-14-cross 4ubuntu3.2 source package in Ubuntu ·
🌐
Debian
packages.debian.org › trixie › gcc-14-x86-64-linux-gnu-base
Details of package gcc-14-x86-64-linux-gnu-base in trixie
JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser