Skip to content

Install GCC

Actions
Install GCC
v2
Latest
Star (79)

Tags

 (2)

Set up GCC

Test

This GitHub action sets up GCC in your workflow run.

  1. Installs either 32-bit or 64-bit GCC on Ubuntu (possibly, a specific version).
  2. Specify a version to install using the version parameter.
  3. For installing GCC on Windows please see my action setup-mingw.

Use it in your workflow like this:

- name: Set up GCC
  uses: egor-tensin/setup-gcc@v2
  with:
    version: latest
    platform: x64
  • latest is the default value for the version parameter and can be omitted.
  • x64 is the default value for the platform parameter and can be omitted. Use x86 if you want to build 32-bit binaries.
  • cc and c++ executables are set up, pointing to the gcc and g++ executables. Disable this by setting the cc parameter to 0.

API

Input Value Default Description
version latest Install the latest version available in the repository.
any Install a specific version if it's available (see below).
platform x64 Install the x86_64 toolchain.
any Install the i686 toolchain.
cc 1 Set up cc/gcc/c++/g++ executables.
any Don't set up the executables.

Supported versions

Unless the version parameter value is "latest", the ubuntu-toolchain-r/test PPA is used to make more versions available. You can pass the version number as the version parameter value (4.8, 8, 9, etc.), and this action will install the corresponding packages.

The version parameter value is not checked for being an available version for the current distribution. The supported versions for a particular distribution are those found in that distro's repositories & those in the PPA. For example, you can find the list of available versions as of December 2025 below.

version Jammy Noble
9
10
11
12
13
14

This table should be updated periodically; it's a work-in-progress. (Note to self: the list of available GCC versions can be found here and in the PPA repo.)

License

Distributed under the MIT License. See LICENSE.txt for details.

Install GCC is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Install GCC
v2
Latest

Tags

 (2)

Install GCC is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.