How To Install tbb.i686 on Amazon Linux 2
Introduction
In this tutorial we learn how to install tbb.i686 on Amazon Linux 2.
What is tbb.i686
Threading Building Blocks (TBB) is a C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance. It uses common C++ templates and coding style to eliminate tedious threading implementation work. TBB requires fewer lines of code to achieve parallelism than other threading models. The applications you write are portable across platforms. Since the library is also inherently scalable, no code maintenance is required as more processor cores become available.
We can use yum to install tbb.i686 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install tbb.i686.
Install tbb.i686 on Amazon Linux 2 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install tbb.i686 using yum by running the following command:
sudo yum -y install tbb.i686
How To Uninstall tbb.i686 on Amazon Linux 2
To uninstall only the tbb.i686 package we can use the following command:
sudo yum remove tbb.i686
tbb.i686 Package Contents on Amazon Linux 2
/usr/lib/libtbb.so.2
/usr/lib/libtbbmalloc.so.2
/usr/lib/libtbbmalloc_proxy.so.2
/usr/share/doc/tbb-4.1
/usr/share/doc/tbb-4.1/COPYING
/usr/share/doc/tbb-4.1/Release_Notes.txt
References
Summary
In this tutorial we learn how to install tbb.i686 on Amazon Linux 2 using yum.