How To Install libcxxabi on Fedora 34

libcxxabi is Low level support for a standard C++ library Low level support for a standard C++ library

Introduction

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

What is libcxxabi

libcxxabi provides low level support for a standard C++ library. libcxxabi 12.0.0 1.fc34 x86_64 84 k libcxxabi-12.0.0-1.fc34.src.rpm updates Low level support for a standard C++ library http MIT or NCSA libcxxabi provides low level support for a standard C++ library.

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

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

sudo dnf -y install libcxxabi

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

sudo yum -y install libcxxabi

How To Uninstall libcxxabi on Fedora 34

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

sudo dnf remove libcxxabi

libcxxabi Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/1a
/usr/lib/.build-id/1a/e0d33b5a5635b309e23efdeb603556b2dcbc2a
/usr/lib64/libc++abi.so.1
/usr/lib64/libc++abi.so.1.0
/usr/share/doc/libcxxabi
/usr/share/doc/libcxxabi/CREDITS.TXT
/usr/share/licenses/libcxxabi
/usr/share/licenses/libcxxabi/LICENSE.TXT
/usr/lib/.build-id
/usr/lib/.build-id/80
/usr/lib/.build-id/80/c37f66cfc089e8cf3aacfb22d7d8e37dc9065f
/usr/lib/libc++abi.so.1
/usr/lib/libc++abi.so.1.0
/usr/share/doc/libcxxabi
/usr/share/doc/libcxxabi/CREDITS.TXT
/usr/share/licenses/libcxxabi
/usr/share/licenses/libcxxabi/LICENSE.TXT
/usr/lib/.build-id
/usr/lib/.build-id/84
/usr/lib/.build-id/84/a181adb295afc3a5e353366840c7e8dc69380f
/usr/lib/libc++abi.so.1
/usr/lib/libc++abi.so.1.0
/usr/share/doc/libcxxabi
/usr/share/doc/libcxxabi/CREDITS.TXT
/usr/share/licenses/libcxxabi
/usr/share/licenses/libcxxabi/LICENSE.TXT
/usr/lib/.build-id
/usr/lib/.build-id/a9
/usr/lib/.build-id/a9/7eabc1257d0d54de5e4bd7e4743af34464bb19
/usr/lib64/libc++abi.so.1
/usr/lib64/libc++abi.so.1.0
/usr/share/doc/libcxxabi
/usr/share/doc/libcxxabi/CREDITS.TXT
/usr/share/licenses/libcxxabi
/usr/share/licenses/libcxxabi/LICENSE.TXT

References

Summary

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