shaderc

Vulkan shader compilation tools, libraries, and testing utilities

brewmacoslinux
Try with needOr install directly
Source

About

Collection of tools, libraries, and tests for Vulkan shader compilation

Commands

glslc

Examples

Compile a GLSL shader to SPIR-V binary format$ glslc shader.glsl -o shader.spv
Compile a shader with optimization and specify target environment$ glslc -O shader.vert -o shader.vert.spv -std=450core
Compile multiple shaders with dependency tracking$ glslc -c shader.glsl -o shader.spv -Werror