How To Install libdispatch on CentOS 8

In this tutorial we learn how to install libdispatch on CentOS 8. libdispatch is Apple’s Grand Central Dispatch library

Introduction

In this tutorial we learn how to install libdispatch on CentOS 8.

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 CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install libdispatch.

Install libdispatch on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install libdispatch

Install libdispatch on CentOS 8 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install libdispatch

How To Uninstall libdispatch on CentOS 8

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

sudo dnf remove libdispatch

References

Summary

In this tutorial we learn how to install libdispatch on CentOS 8 using yum and dnf.