15 lines
443 B
Plaintext
15 lines
443 B
Plaintext
config BR2_PACKAGE_SPIRV_TOOLS
|
|
bool "spirv-tools"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
|
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
|
|
|
|
comment "spirv-tools needs a toolchain w/ C++, gcc >= 7"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7
|