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.299/Vulkan-Loader-1.3.299.tar.gz
Download MD5 sum: 407c63c5b814ea5c42746a0b08ea0d4d
Download size: 1.6 MB
Estimated disk space required: 9.3 MB
Estimated build time: less than 0.1 SBU
CMake-3.30.5, Vulkan-Headers-1.3.299, Wayland-1.23.0, and Xorg Libraries
Mesa-24.2.6 (for Vulkan drivers)
If this package is being installed on a system where Mesa has already been installed previously, please rebuild Mesa-24.2.6 after this package to install Vulkan graphics drivers.
Install Vulkan-Loader by running the following commands:
mkdir build && cd build && cmake -D CMAKE_INSTALL_PREFIX=/usr \ -D CMAKE_BUILD_TYPE=Release \ -D CMAKE_SKIP_INSTALL_RPATH=ON \ -G Ninja .. && ninja
This package does not come with a working test suite.
Now, as the root
user:
ninja install
-D
CMAKE_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.