Update to the current release. We now need the recently added vulkan-sdk to have access to the volk loader. Update the depends comments appropriately. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> [Julien: - reword commit log title to use bash brace-expansion style - remove "vulkan-sdk" from Kconfig comment - remove newline before Kconfig help section ] Signed-off-by: Julien Olivain <ju.o@free.fr>
18 lines
682 B
Plaintext
18 lines
682 B
Plaintext
config BR2_PACKAGE_VULKAN_TOOLS
|
|
bool "vulkan-tools"
|
|
depends on BR2_INSTALL_LIBSTDCPP # vulkan-loader
|
|
depends on !BR2_STATIC_LIBS # vulkan-loader, vulkan-sdk
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # vulkan-loader
|
|
select BR2_PACKAGE_VULKAN_HEADERS
|
|
select BR2_PACKAGE_VULKAN_LOADER
|
|
select BR2_PACKAGE_VULKAN_SDK
|
|
help
|
|
The Khronos official Vulkan Tools and Utilities.
|
|
|
|
https://github.com/KhronosGroup/Vulkan-Tools
|
|
|
|
comment "vulkan-tools needs a toolchain w/ C++, dynamic library, threads, gcc >= 4.9"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|