How To Install libgomp on Fedora 34

libgomp is GCC OpenMP v4.5 shared support library GCC OpenMP v4.5 shared support library GCC OpenMP v4.5 shared support library

Introduction

In this tutorial we learn how to install libgomp on Fedora 34.

What is libgomp

This package contains GCC shared support library which is needed for OpenMP v4.5 support. libgomp 11.2.1 1.fc34 i686 285 k gcc-11.2.1-1.fc34.src.rpm updates GCC OpenMP v4.5 shared support library http GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD This package contains GCC shared support library which is needed for OpenMP v4.5 support. libgomp 11.2.1 1.fc34 x86_64 279 k gcc-11.2.1-1.fc34.src.rpm updates GCC OpenMP v4.5 shared support library http GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD This package contains GCC shared support library which is needed for OpenMP v4.5 support.

We can use yum or dnf to install libgomp on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libgomp.

Install libgomp on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libgomp using dnf by running the following command:

sudo dnf -y install libgomp

Install libgomp on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libgomp using yum by running the following command:

sudo yum -y install libgomp

How To Uninstall libgomp on Fedora 34

To uninstall only the libgomp package we can use the following command:

sudo dnf remove libgomp

libgomp Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/78/ef94792c6e3d2b780f71d1a2e48166194c2c84
/usr/lib64/libgomp.so.1
/usr/lib64/libgomp.so.1.0.0
/usr/share/doc/libgomp
/usr/share/doc/libgomp/ChangeLog.bz2
/usr/share/doc/libgomp/ChangeLog.graphite.bz2
/usr/share/info/libgomp.info.gz
/usr/lib/.build-id
/usr/lib/.build-id/81
/usr/lib/.build-id/81/99012872ea20ee54c255f3b617ac87980a132a
/usr/lib/libgomp.so.1
/usr/lib/libgomp.so.1.0.0
/usr/share/doc/libgomp
/usr/share/doc/libgomp/ChangeLog.bz2
/usr/share/doc/libgomp/ChangeLog.graphite.bz2
/usr/share/info/libgomp.info.gz
/usr/lib/.build-id
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/06f90332efaffdc8549b67760a9bfad69edab9
/usr/lib64/libgomp.so.1
/usr/lib64/libgomp.so.1.0.0
/usr/share/doc/libgomp
/usr/share/doc/libgomp/ChangeLog.bz2
/usr/share/doc/libgomp/ChangeLog.graphite.bz2
/usr/share/info/libgomp.info.gz
/usr/lib/.build-id
/usr/lib/.build-id/df
/usr/lib/.build-id/df/8e3af392d4f1ab57145d4e0cbec306eaea4b05
/usr/lib/libgomp.so.1
/usr/lib/libgomp.so.1.0.0
/usr/share/doc/libgomp
/usr/share/doc/libgomp/ChangeLog.bz2
/usr/share/doc/libgomp/ChangeLog.graphite.bz2
/usr/share/info/libgomp.info.gz

References

Summary

In this tutorial we learn how to install libgomp on Fedora 34 using yum and dnf.