How To Install lld-test on Rocky Linux 8

In this tutorial we learn how to install lld-test on Rocky Linux 8. lld-test is LLD regression tests

Introduction

In this tutorial we learn how to install lld-test on Rocky Linux 8.

What is lld-test

LLVM regression tests.

We can use yum or dnf to install lld-test on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install lld-test.

Install lld-test on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install lld-test

Install lld-test on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install lld-test using yum by running the following command:

sudo yum -y install lld-test

How To Uninstall lld-test on Rocky Linux 8

To uninstall only the lld-test package we can use the following command:

sudo dnf remove lld-test

lld-test Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/27
/usr/lib/.build-id/27/3cb36c2b267a91ee59b4e63d6f4d7bfe8e7f6c
/usr/lib/.build-id/36
/usr/lib/.build-id/36/ed92e384c29d654c104cb61f3f0263163244ce
/usr/lib/.build-id/6b
/usr/lib/.build-id/6b/7e7d4b1a20f74e96aca90859ab4985d46cefa6
/usr/lib/.build-id/6b/7e7d4b1a20f74e96aca90859ab4985d46cefa6.1
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/69d4c862dd5816a5afc299de2e3d6c059bb4c8
/usr/lib/.build-id/e4/69d4c862dd5816a5afc299de2e3d6c059bb4c8.1
/usr/lib64/lld
/usr/lib64/lld/libgtest.so
/usr/lib64/lld/libgtest.so.11
/usr/lib64/lld/libgtest_main.so
/usr/lib64/lld/libgtest_main.so.11
/usr/lib64/lld/unittests
/usr/lib64/lld/unittests/DriverTests
/usr/lib64/lld/unittests/DriverTests/DriverTests
/usr/lib64/lld/unittests/MachOTests
/usr/lib64/lld/unittests/MachOTests/lldMachOTests
/usr/libexec/tests/lld
/usr/libexec/tests/lld/run-lit-tests
/usr/share/lld/lit.lld-test.cfg.py
/usr/share/lld/src/test.tar.gz
/usr/share/lld/src/x86_64.Unit.site.cfg.py
/usr/share/lld/src/x86_64.site.cfg.py
/usr/lib/.build-id
/usr/lib/.build-id/6f
/usr/lib/.build-id/6f/6094ba61ecc870efd70f948a39bf69eb324263
/usr/lib/.build-id/6f/6094ba61ecc870efd70f948a39bf69eb324263.1
/usr/lib/.build-id/af
/usr/lib/.build-id/af/5d2a10ed8637e41d1bd6d76f638d4f89bfe107
/usr/lib/.build-id/d7
/usr/lib/.build-id/d7/aded4a754cd67bf99b6e39f02c2b6cdf8918fc
/usr/lib/.build-id/ff
/usr/lib/.build-id/ff/eaa2078e5036f2cc4f5719027a89e7f46b8b24
/usr/lib/.build-id/ff/eaa2078e5036f2cc4f5719027a89e7f46b8b24.1
/usr/lib/lld
/usr/lib/lld/libgtest.so
/usr/lib/lld/libgtest.so.11
/usr/lib/lld/libgtest_main.so
/usr/lib/lld/libgtest_main.so.11
/usr/lib/lld/unittests
/usr/lib/lld/unittests/DriverTests
/usr/lib/lld/unittests/DriverTests/DriverTests
/usr/lib/lld/unittests/MachOTests
/usr/lib/lld/unittests/MachOTests/lldMachOTests
/usr/libexec/tests/lld
/usr/libexec/tests/lld/run-lit-tests
/usr/share/lld/lit.lld-test.cfg.py
/usr/share/lld/src/i386.Unit.site.cfg.py
/usr/share/lld/src/i386.site.cfg.py
/usr/share/lld/src/test.tar.gz

References

Summary

In this tutorial we learn how to install lld-test on Rocky Linux 8 using yum and dnf.