How To Install nativejit on Fedora 36
Introduction
In this tutorial we learn how to install nativejit
on Fedora 36.
What is nativejit
NativeJIT is an open-source cross-platform library for high-performance just-in-time compilation of expressions involving C data structures. The compiler is light weight and fast and it takes no dependencies beyond the standard C++ runtime. It runs on Linux, OSX, and Windows. The generated code is optimized with particular attention paid to register allocation. It requires CPUs with SSE4 (Streaming SIMD Extensions 4).
We can use yum
or dnf
to install nativejit
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install nativejit.
Install nativejit on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install nativejit
using dnf
by running the following command:
sudo dnf -y install nativejit
Install nativejit on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install nativejit
using yum
by running the following command:
sudo yum -y install nativejit
How To Uninstall nativejit on Fedora 36
To uninstall only the nativejit
package we can use the following command:
sudo dnf remove nativejit
nativejit Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/8a
/usr/lib/.build-id/8a/82a121741a63790e4f619e6939d6644801db83
/usr/lib/.build-id/e5
/usr/lib/.build-id/e5/7863b96e96df5ab9f293880f4983d985423a0e
/usr/lib64/libCodeGen.so.0
/usr/lib64/libNativeJIT.so.0
/usr/share/doc/nativejit
/usr/share/doc/nativejit/README.md
/usr/share/licenses/nativejit
/usr/share/licenses/nativejit/LICENSE.txt
References
Summary
In this tutorial we learn how to install nativejit
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).