How To Install libgcc-s1-alpha-cross on Ubuntu 20.04

In this tutorial we learn how to install libgcc-s1-alpha-cross on Ubuntu 20.04. libgcc-s1-alpha-cross is GCC support library (alpha) GCC support library (alpha) GCC support library (alpha)

Introduction

In this tutorial we learn how to install libgcc-s1-alpha-cross on Ubuntu 20.04.

What is libgcc-s1-alpha-cross

libgcc-s1-alpha-cross is:

Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages.

This package contains files for alpha architecture, for use in cross-compile environment.

Package: libgcc-s1-alpha-cross Architecture: all Version: 10.2.0-5ubuntu1~20.04cross1 Built-Using: gcc-10 (= 10.2.0-5ubuntu1~20.04) Priority: optional Section: universe/devel Source: gcc-10-cross-ports (5ubuntu2) Origin: Ubuntu Maintainer: Ubuntu Core developers [email protected] Original-Maintainer: Debian GCC Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 99 Provides: libgcc-s1-alpha-dcv1, libgcc1-alpha-cross (= 1:10.2.0-5ubuntu1~20.04) Depends: gcc-10-cross-base-ports (= 10.2.0-5ubuntu1~20.04cross1), libc6.1-alpha-cross (>= 2.31) Breaks: libgcc1-alpha-cross (« 1:10) Replaces: libgcc1-alpha-cross (« 1:10) Filename: pool/universe/g/gcc-10-cross-ports/libgcc-s1-alpha-cross_10.2.0-5ubuntu1~20.04cross1_all.deb Size: 30248 MD5sum: d91f41e7e535d5bc6027531702002c91 SHA1: 574d00bc0123433d43d9e402d088c83ed3fe7ed9 SHA256: 25461e1a2bc5d7fe589268f0297b51e2ab9e2a81a438760d8ba3aba17190ec44 SHA512: 83b97c6467639730056a0a15d88703fa20fbd4e7e5123ec60923e3249c100ee4f9a8f91e6cf8293feaaede56ff42cccd8befd16792007e25781fb243bf05242c Homepage: http://gcc.gnu.org/ Description-en: GCC support library (alpha) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages.

This package contains files for alpha architecture, for use in cross-compile environment.

Package: libgcc-s1-alpha-cross Architecture: all Version: 10-20200411-0ubuntu1cross1 Built-Using: gcc-10 (= 10-20200411-0ubuntu1) Priority: optional Section: universe/devel Source: gcc-10-cross-ports (5ubuntu1) Origin: Ubuntu Maintainer: Ubuntu Core developers [email protected] Original-Maintainer: Debian GCC Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 99 Provides: libgcc-s1-alpha-dcv1, libgcc1-alpha-cross (= 1:10-20200411-0ubuntu1) Depends: gcc-10-cross-base-ports (= 10-20200411-0ubuntu1cross1), libc6.1-alpha-cross (>= 2.31) Breaks: libgcc1-alpha-cross (« 1:10) Replaces: libgcc1-alpha-cross (« 1:10) Filename: pool/universe/g/gcc-10-cross-ports/libgcc-s1-alpha-cross_10-20200411-0ubuntu1cross1_all.deb Size: 30244 MD5sum: 21d44f7929c8fc6a085506f9a34d67db SHA1: cf46c7fcac2d2531b885e4d61c5e3599f7312cd1 SHA256: f976ef9e47441578c16d280b5f40bfe383bb1abd472a729a492a9151b9398d61 Homepage: http://gcc.gnu.org/ Description-en: GCC support library (alpha) Shared version of the support library, a library of internal subroutines that GCC uses to overcome shortcomings of particular machines, or special needs for some languages.

This package contains files for alpha architecture, for use in cross-compile environment.

There are three methods to install libgcc-s1-alpha-cross on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libgcc-s1-alpha-cross Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libgcc-s1-alpha-cross using apt-get by running the following command:

sudo apt-get -y install libgcc-s1-alpha-cross

Install libgcc-s1-alpha-cross Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgcc-s1-alpha-cross using apt by running the following command:

sudo apt -y install libgcc-s1-alpha-cross

Install libgcc-s1-alpha-cross Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libgcc-s1-alpha-cross using aptitude by running the following command:

sudo aptitude -y install libgcc-s1-alpha-cross

How To Uninstall libgcc-s1-alpha-cross on Ubuntu 20.04

To uninstall only the libgcc-s1-alpha-cross package we can use the following command:

sudo apt-get remove libgcc-s1-alpha-cross

Uninstall libgcc-s1-alpha-cross And Its Dependencies

To uninstall libgcc-s1-alpha-cross and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libgcc-s1-alpha-cross

Remove libgcc-s1-alpha-cross Configurations and Data

To remove libgcc-s1-alpha-cross configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libgcc-s1-alpha-cross

Remove libgcc-s1-alpha-cross configuration, data, and all of its dependencies

We can use the following command to remove libgcc-s1-alpha-cross configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libgcc-s1-alpha-cross

References

Summary

In this tutorial we learn how to install libgcc-s1-alpha-cross package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.