How To Install cloog on Fedora 34

cloog is The Chunky Loop Generator The Chunky Loop Generator

Introduction

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

What is cloog

CLooG is a software which generates loops for scanning Z-polyhedra. That is, CLooG finds the code or pseudo-code where each integral point of one or more parametrized polyhedron or parametrized polyhedra union is reached. CLooG is designed to avoid control overhead and to produce a very efficient code. cloog 1 0.18.4 10.fc34 x86_64 91 k cloog-0.18.4-10.fc34.src.rpm fedora The Chunky Loop Generator http GPLv2+ CLooG is a software which generates loops for scanning Z-polyhedra. That is, CLooG finds the code or pseudo-code where each integral point of one or more parametrized polyhedron or parametrized polyhedra union is reached. CLooG is designed to avoid control overhead and to produce a very efficient code.

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

Install cloog 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 cloog using dnf by running the following command:

sudo dnf -y install cloog

Install cloog 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 cloog using yum by running the following command:

sudo yum -y install cloog

How To Uninstall cloog on Fedora 34

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

sudo dnf remove cloog

cloog Package Contents on Fedora 34

/usr/bin/cloog
/usr/lib/.build-id
/usr/lib/.build-id/8b
/usr/lib/.build-id/8b/16f70f619747f94400917b9e65bbc9d394fe25
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/496f281d0d17f83715c1573ebfafdb387c3a4d
/usr/lib/libcloog-isl.so.4
/usr/lib/libcloog-isl.so.4.0.0
/usr/share/doc/cloog-0.18.4/ChangeLog
/usr/share/doc/cloog-0.18.4/LICENSE
/usr/share/doc/cloog-0.18.4/README
/usr/bin/cloog
/usr/lib/.build-id
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/96fe15091559575ad162c775ebaa756cfad85a
/usr/lib/.build-id/f7
/usr/lib/.build-id/f7/d641b867b4229e361229f20b5da9e99f500ca8
/usr/lib64/libcloog-isl.so.4
/usr/lib64/libcloog-isl.so.4.0.0
/usr/share/doc/cloog-0.18.4/ChangeLog
/usr/share/doc/cloog-0.18.4/LICENSE
/usr/share/doc/cloog-0.18.4/README

References

Summary

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