How To Install libdispatch on Fedora 34
Introduction
In this tutorial we learn how to install libdispatch
on Fedora 34.
What is libdispatch
Grand Central Dispatch (GCD or libdispatch) provides comprehensive support for concurrent code execution on multicore hardware. libdispatch is currently available on all Darwin platforms. This project aims to make a modern version of libdispatch available on all other Swift platforms. To do this, we will implement as much of the portable subset of the API as possible, using the existing open source C implementation. libdispatch on Darwin is a combination of logic in the xnu kernel alongside the user-space Library. The kernel has the most information available to balance workload across the entire system. As a first step, however, we believe it is useful to bring up the basic functionality of the library using user-space pthread primitives on Linux. Eventually, a Linux kernel module could be developed to support more informed thread scheduling.
We can use yum
or dnf
to install libdispatch
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libdispatch.
Install libdispatch 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 libdispatch
using dnf
by running the following command:
sudo dnf -y install libdispatch
Install libdispatch 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 libdispatch
using yum
by running the following command:
sudo yum -y install libdispatch
How To Uninstall libdispatch on Fedora 34
To uninstall only the libdispatch
package we can use the following command:
sudo dnf remove libdispatch
libdispatch Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/11
/usr/lib/.build-id/11/ec911958e6dd4f8e2cb5228721d1408890d26b
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/244e23a7eebe2e5024bdca6ab3d9201b4d3825
/usr/lib64/libBlocksRuntime.so
/usr/lib64/libdispatch.so
/usr/share/licenses/libdispatch
/usr/share/licenses/libdispatch/LICENSE
/usr/share/man/man3/dispatch.3.gz
/usr/share/man/man3/dispatch_after.3.gz
/usr/share/man/man3/dispatch_api.3.gz
/usr/share/man/man3/dispatch_apply.3.gz
/usr/share/man/man3/dispatch_async.3.gz
/usr/share/man/man3/dispatch_data_create.3.gz
/usr/share/man/man3/dispatch_group_create.3.gz
/usr/share/man/man3/dispatch_io_create.3.gz
/usr/share/man/man3/dispatch_io_read.3.gz
/usr/share/man/man3/dispatch_object.3.gz
/usr/share/man/man3/dispatch_once.3.gz
/usr/share/man/man3/dispatch_queue_create.3.gz
/usr/share/man/man3/dispatch_read.3.gz
/usr/share/man/man3/dispatch_semaphore_create.3.gz
/usr/share/man/man3/dispatch_source_create.3.gz
/usr/share/man/man3/dispatch_time.3.gz
/usr/lib/.build-id
/usr/lib/.build-id/5e
/usr/lib/.build-id/5e/c2bbbad98930b2f5b6804466c9120c59a25cff
/usr/lib/.build-id/da
/usr/lib/.build-id/da/20fa9e7e172aba5fae85fcd29384f1d0d084a9
/usr/lib64/libBlocksRuntime.so
/usr/lib64/libdispatch.so
/usr/share/licenses/libdispatch
/usr/share/licenses/libdispatch/LICENSE
/usr/share/man/man3/dispatch.3.gz
/usr/share/man/man3/dispatch_after.3.gz
/usr/share/man/man3/dispatch_api.3.gz
/usr/share/man/man3/dispatch_apply.3.gz
/usr/share/man/man3/dispatch_async.3.gz
/usr/share/man/man3/dispatch_data_create.3.gz
/usr/share/man/man3/dispatch_group_create.3.gz
/usr/share/man/man3/dispatch_io_create.3.gz
/usr/share/man/man3/dispatch_io_read.3.gz
/usr/share/man/man3/dispatch_object.3.gz
/usr/share/man/man3/dispatch_once.3.gz
/usr/share/man/man3/dispatch_queue_create.3.gz
/usr/share/man/man3/dispatch_read.3.gz
/usr/share/man/man3/dispatch_semaphore_create.3.gz
/usr/share/man/man3/dispatch_source_create.3.gz
/usr/share/man/man3/dispatch_time.3.gz
References
Summary
In this tutorial we learn how to install libdispatch
on Fedora 34 using yum and dnf.