$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Step-by-step – How to Install GCC 12.2 on Ubuntu 20.04 Guide

October 5, 2022 | By the+gnu+linux+evangelist.

GNU/Linux Ubuntu 20.04 Installing GCC 12.2 from Source – QuickStart Guide

Hi! This tutorial will guide you step-by-step on How to Install GNU Compiler Collection 12.2.x from Source in Ubuntu 20.04 Focal LTS GNU/Linux.

And the GCC 12.2 for Ubuntu 20.04 is a Compilers Collection currently supporting C, C++, Objective-C, Objective-C++, Fortran, Ada, D, Go, and BRIG (HSAIL) Languages.

Finally, GCC 12.2 includes several New Features, Changes, and Fixes that you can consult on the GNU GCC Documentation.

Step-by-step GCC 12.2 Ubuntu 20.04 Installation Guide - Featured
  1. 1. Launching Terminal

    Open a Shell Session
    (Press “Enter” to Execute Commands)

    Step-by-step GCC 12.2 Ubuntu 20.04 Installation Guide - Open Terminal

    And Update Ubuntu Apt Repository:

    Copy
    sudo apt update
  2. 2. Querying System GCC

    First, find out what the actual System GCC
    Play:

    Copy
    which gcc

    Take Note of the PATH to use after installation for switching the System GCC.
    Possibly to Check the current GCC version issue:

    Copy
    gcc -v
  3. 3. Downloading GCC 12.2

    Download GCC 12.2 Source Code for GNU/Linux

    Here GCC 12.2 Source tar.gz
    Link to Download GCC 12.2 Source Code Archive for GNU/Linux

    Navigate to the 12.2.x Folder to Grab the Package.

  4. 4. Extracting GCC 12.2

    Then to Extract GCC 12.2 Archive
    If it does Not Open automatically then Double-Click/Right-Click to Open with Archive Manager:

    Step-by-step GCC 12.2 Ubuntu 20.04 Installation Guide - Extracting
    Or from Command Line:

    Copy
    tar xvzf ~/Downloads/gcc-12.*.tar.gz

    (But if downloaded with Firefox it may be instead into /tmp/mozilla*)
    Finally, if you are in Trouble to Find Out it on Terminal See: How to Access Downloads Folder from Browser.

Contents