2023-07-25 19:30:57 +02:00
|
|
|
config BR2_PACKAGE_SPIRV_TOOLS
|
|
|
|
bool "spirv-tools"
|
2023-10-02 18:54:35 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
2023-07-25 19:30:57 +02:00
|
|
|
select BR2_PACKAGE_SPIRV_HEADERS
|
|
|
|
help
|
|
|
|
The SPIR-V Tools project provides an API and commands for
|
|
|
|
processing SPIR-V modules.
|
|
|
|
|
|
|
|
https://github.com/KhronosGroup/SPIRV-Tools
|
2023-10-28 17:14:45 +02:00
|
|
|
|
2023-10-02 18:54:35 +02:00
|
|
|
comment "spirv-tools needs a toolchain w/ C++, gcc >= 7"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7
|