Chapter 1. Clang and LLVM Toolset
1.1. About Clang and LLVM Toolset
Clang and LLVM Toolset is a Red Hat offering for developers on the Red Hat Enterprise Linux platform. It provides the LLVM compiler infrastructure framework, the Clang compiler for the C and C++ languages, the LLDB debugger, and related tools for code analysis.
Clang and LLVM Toolset is distributed as a part of Red Hat Developer Tools for Red Hat Enterprise Linux 7 and is available as a module in Red Hat Enterprise Linux 8.
The following components are available as a part of Clang and LLVM Toolset:
Name | Version | Description |
---|---|---|
| 7.0.1 | A LLVM compiler front-end for C and C++. |
| 7.0.1 | A C and C++ debugger using portions of LLVM. |
| 3.6.2 | A build management system. |
| 7.0.1 | Runtime libraries for LLVM. |
| 7.0.1 | A collection of modular and reusable compiler and toolchain technologies. |
| 7.0.1 | A library for utilization of Open MP API specification for parallel programming. |
| 0.7.1 | A Software testing tool for LLVM- and Clang-based test suites. |
Package versions are the same for Red Hat Enterprise Linux 7 and Red Hat Enterprise Linux 8.
1.2. Compatibility
Clang and LLVM Toolset is available for Red Hat Enterprise Linux 7 and Red Hat Enterprise Linux 8 on the following architectures:
- The 64-bit Intel and AMD architectures
- The 64-bit ARM architecture
- The IBM Power Systems architecture
- The little-endian variant of IBM Power Systems architecture
- The IBM Z Systems architecture
1.3. Getting Access to Clang and LLVM Toolset on Red Hat Enterprise Linux 7
Clang and LLVM Toolset is an offering that is distributed as a part of the Red Hat Developer Tools content set, which is available to customers with deployments of Red Hat Enterprise Linux 7. To install Clang and LLVM Toolset, enable the Red Hat Developer Tools and Red Hat Software Collections repositories by using the Red Hat Subscription Management and add the Red Hat Developer Tools GPG key to your system.
Enable the
rhel-7-variant-devtools-rpms
repository:# subscription-manager repos --enable rhel-7-variant-devtools-rpms
Replace variant with the Red Hat Enterprise Linux system variant (
server
orworkstation
).NoteWe recommend developers to use Red Hat Enterprise Linux Server for access to the widest range of development tools.
Enable the
rhel-variant-rhscl-7-rpms
repository:# subscription-manager repos --enable rhel-variant-rhscl-7-rpms
Replace variant with the Red Hat Enterprise Linux system variant (
server
orworkstation
).Add the Red Hat Developer Tools key to your system:
# cd /etc/pki/rpm-gpg # wget -O RPM-GPG-KEY-redhat-devel https://www.redhat.com/security/data/a5787476.txt # rpm --import RPM-GPG-KEY-redhat-devel
Once the subscription is attached to the system and repositories enabled, you can install Red Hat Clang and LLVM Toolset as described in Section 1.4, “Installing Clang and LLVM Toolset”.
Additional Resources
- For more information on how to register your system using Red Hat Subscription Management and associate it with subscriptions, see the Red Hat Subscription Management collection of guides.
- For detailed instructions on subscription to Red Hat Software Collections, see the Red Hat Developer Toolset User Guide, Section 1.4. Getting Access to Red Hat Developer Toolset.
1.4. Installing Clang and LLVM Toolset
Clang and LLVM Toolset is distributed as a collection of RPM packages that can be installed, updated, uninstalled, and inspected by using the standard package management tools that are included in Red Hat Enterprise Linux. Note that a valid subscription that provides access to the Red Hat Developer Tools content set is required in order to install Clang and LLVM Toolset on your Red Hat Enterprise Linux 7 system. For detailed instructions on how to associate your Red Hat Enterprise Linux 7 system with an appropriate subscription and get access to Clang and LLVM Toolset, see Section 1.3, “Getting Access to Clang and LLVM Toolset on Red Hat Enterprise Linux 7”.
Before installing Clang and LLVM Toolset, install all available Red Hat Enterprise Linux updates.
Install all of the components included in Clang and LLVM Toolset for your operating system:
On Red Hat Enterprise Linux 7, install the llvm-toolset-7.0 package:
# yum install llvm-toolset-7.0
On Red Hat Enterprise Linux 8, install the llvm-toolset module:
# yum module install llvm-toolset
This installs all development and debugging tools, and other dependent packages to the system.
1.5. Additional Resources
A detailed description of the Clang and LLVM Toolset and all its features is beyond the scope of this book. For more information, see the resources listed below.
Online Documentation
- LLVM documentation overview — The official LLVM documentation.