Created
June 14, 2025 16:33
-
-
Save lewa-j/77e85c7697b36ce52d7af4c15b811977 to your computer and use it in GitHub Desktop.
Linux update Vulkan-Tools, Header & Loader from sources without X11 support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://github.com/KhronosGroup/Vulkan-Tools.git | |
| cd Vulkan-Tools/ | |
| cmake -S . -B build -D BUILD_WSI_XCB_SUPPORT=OFF -D BUILD_WSI_XLIB_SUPPORT=OFF -D BUILD_ICD=OFF -D UPDATE_DEPS=ON -D CMAKE_BUILD_TYPE=Debug -D TOOLS_CODEGEN=ON | |
| cmake --build build --target tools_codegen | |
| cmake --build build --config Debug | |
| sudo cmake --install external/Debug/64/Vulkan-Headers/build --prefix /usr | |
| sudo cmake --install external/Debug/64/Vulkan-Loader/build --prefix /usr/local | |
| sudo cmake --install build --prefix /usr/local | |
| sudo ldconfig | |
| vulkaninfo --summary |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment