How To Install liboil on Fedora 34

liboil is Library of Optimized Inner Loops, CPU optimized functions Library of Optimized Inner Loops, CPU optimized functions

Introduction

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

What is liboil

Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-poing numbers or multiplying and summing an array of N numbers. Clearly such functions are candidates for significant optimization using various techniques, especially by using extended instructions provided by modern CPUs (Altivec, MMX, SSE, etc.). liboil 0.3.16 25.fc34 x86_64 145 k liboil-0.3.16-25.fc34.src.rpm fedora Library of Optimized Inner Loops, CPU optimized functions http BSD Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-poing numbers or multiplying and summing an array of N numbers. Clearly such functions are candidates for significant optimization using various techniques, especially by using extended instructions provided by modern CPUs (Altivec, MMX, SSE, etc.).

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

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

sudo dnf -y install liboil

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

sudo yum -y install liboil

How To Uninstall liboil on Fedora 34

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

sudo dnf remove liboil

liboil Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/05a97c25a17cf59c3df8790f32868b70393584
/usr/lib/liboil-0.3.so.0
/usr/lib/liboil-0.3.so.0.3.0
/usr/share/doc/liboil
/usr/share/doc/liboil/AUTHORS
/usr/share/doc/liboil/BUG-REPORTING
/usr/share/doc/liboil/COPYING
/usr/share/doc/liboil/NEWS
/usr/share/doc/liboil/README
/usr/lib/.build-id
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/0c26d672237b1567b3f0d3e19beeb5d397cced
/usr/lib64/liboil-0.3.so.0
/usr/lib64/liboil-0.3.so.0.3.0
/usr/share/doc/liboil
/usr/share/doc/liboil/AUTHORS
/usr/share/doc/liboil/BUG-REPORTING
/usr/share/doc/liboil/COPYING
/usr/share/doc/liboil/NEWS
/usr/share/doc/liboil/README

References

Summary

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