The Vulkan-Loader package contains a library which provides the Vulkan API and provides core support for graphics drivers for Vulkan.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.3.289/Vulkan-Loader-1.3.289.tar.gz
Download MD5 sum: 1c2d179ce0d7ce9564ac9e50c020216d
Download size: 1.6 MB
Estimated disk space required: 9.2 MB
Estimated build time: less than 0.1 SBU
CMake-3.29.5, Vulkan-Headers-1.3.289, Wayland-1.23.0, and Xorg Libraries
Mesa-24.1.3 (for Vulkan drivers)
If this package is being installed on a system where Mesa has already been installed previously, please rebuild Mesa-24.1.3 after this package to install Vulkan graphics drivers.
Install Vulkan-Loader by running the following commands:
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_INSTALL_RPATH=ON \ -G Ninja .. && ninja
This package does not come with a working test suite.
Now, as the root
user:
ninja install
-DCMAKE_SKIP_INSTALL_RPATH=ON
: This
switch makes cmake
remove hardcoded library search paths (rpath) when installing a
binary executable file or a shared library. This package does not
need rpath once it's installed into the standard location, and
rpath may sometimes cause unwanted effects or even security issues.