# Installer spirv-tools avec Homebrew, apk, apt, dnf, MacPorts, Nix, pacman, zypper

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de spirv-tools pour les workflows d'agents IA.

## installation

```sh
sudo av install brew:spirv-tools
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install spirv-tools
```

  Preuve: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install spirv-tools
```

  Preuve: MacPorts ports tree: graphics/spirv-tools/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add spirv-tools
```

  Preuve: Alpine Linux edge package indexes: spirv-tools from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install spirv-tools
```

  Preuve: Debian stable package indexes: spirv-tools from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install spirv-tools
```

  Preuve: Fedora Rawhide package metadata: spirv-tools from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#spirv-tools
```

  Preuve: nixpkgs package indexes: pkgs/by-name/sp/spirv-tools/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S spirv-tools
```

  Preuve: Arch Linux sync databases: spirv-tools from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install spirv-tools
```

  Preuve: openSUSE Tumbleweed package metadata: spirv-tools from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## Faits du paquet

- **Clé du paquet:** brew:spirv-tools
- **Gestionnaire de paquets:** Homebrew
- **Page du gestionnaire de paquets:** <https://formulae.brew.sh/formula/spirv-tools>
- **Version:** 1.4.357.0
- **Résumé source:** API and commands for processing SPIR-V modules
- **Page d'accueil:** <https://github.com/KhronosGroup/SPIRV-Tools>
- **Dépôt:** <https://github.com/KhronosGroup/SPIRV-Tools>
- **Licence:** Apache-2.0
- **Archive source:** <https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/tags/vulkan-sdk-1.4.357.0.tar.gz>
- **Dernière mise à jour:** 2026-07-29T00:07:22Z
- **Généré:** 2026-08-04T22:13:35+00:00

## exécutables

- spirv-as (cli)
- spirv-cfg (cli)
- spirv-diff (cli)
- spirv-dis (cli)
- spirv-lesspipe.sh (cli)
- spirv-link (cli)
- spirv-lint (cli)
- spirv-objdump (cli)
- spirv-opt (cli)
- spirv-reduce (cli)
- spirv-val (cli)
- spirv-as (alias)
- spirv-cfg (alias)
- spirv-diff (alias)
- spirv-dis (alias)
- spirv-lesspipe.sh (alias)
- spirv-link (alias)
- spirv-lint (alias)
- spirv-objdump (alias)
- spirv-opt (alias)
- spirv-reduce (alias)
- spirv-val (alias)

## Dépendances de compilation

- cmake
- spirv-headers

## Comportement d'installation

- hook post-installation: non défini
- Bouteille: disponible sur arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sequoia, sonoma, tahoe, x86_64_linux

## Version et fraîcheur

- page générée: 2026-08-04
- version du gestionnaire: 1.4.357.0
- gestionnaire mis à jour: 2026-07-29
- données locales: OK
- dépôt amont: https://github.com/KhronosGroup/SPIRV-Tools
- info: No cached GitHub release or tag data was available.
## Historique du projet et usages

SPIRV-Tools is the Khronos Group toolkit of command-line programs and libraries for assembling, disassembling, validating, optimizing, linking, reducing, and inspecting SPIR-V modules.

### Historique du projet

SPIR-V became the Khronos-standard binary intermediate language for graphics shaders and compute kernels with the 2015 SPIR-V 1.0 release. SPIRV-Tools grew around that ecosystem as the practical toolbelt for working with modules after frontends emit them and before drivers or runtimes consume them.

The official README describes a shared implementation underneath standalone tools: an assembler, binary parser, disassembler, validator, and optimizer, with stable interfaces for existing features. The project also documents that official releases are distributed through the Vulkan SDK rather than GitHub releases.

### Historique d'adoption

The supplied package-manager data lists SPIRV-Tools in Homebrew, Debian, Ubuntu, Fedora, Alpine, MacPorts, Nix, Arch, and openSUSE-family packaging. Its broad packaging is unsurprising because shader compilers, validation layers, SDKs, and build systems often need the same `spirv-*` commands available on developer machines and CI workers.

### Modes d'utilisation

Common commands include `spirv-as`, `spirv-dis`, `spirv-val`, `spirv-opt`, `spirv-link`, `spirv-reduce`, and `spirv-objdump`. Package users typically install it to validate generated SPIR-V, inspect shader/compiler output, run optimizer passes, or satisfy build dependencies in Vulkan/OpenCL projects.

### Pourquoi les passionnés de paquets s'y intéressent

SPIRV-Tools is one of those packages whose command names show up in failing configure logs and CI scripts. It matters to maintainers because it sits at the junction of Khronos specifications, Vulkan SDK releases, SPIRV-Headers grammar updates, and downstream shader/compiler projects.

### Chronologie

- 2015: Khronos releases SPIR-V 1.0 and announces open source SPIR-V utilities.
- 2016: README version examples begin with the `v2016.x` SPIRV-Tools versioning scheme.
- 2023: README notes that development occurs on the `main` branch.

### Related projects

- SPIRV-Headers provides the Khronos headers and grammar files used by SPIR-V tooling.
- SPIRV-LLVM-Translator can use SPIRV-Tools commands such as `spirv-as` and `spirv-val` in its tests and validation workflows.
- The Vulkan SDK is the official release channel named by the SPIRV-Tools README.

### Sources

- <https://github.com/KhronosGroup/SPIRV-Tools#readme>
- <https://github.com/KhronosGroup/SPIRV-Tools/tree/main/docs>
- <https://registry.khronos.org/SPIR-V/>
- <https://www.khronos.org/news/press/khronos-releases-opencl-2.1-and-spir-v-1.0-specifications-for-heterogeneous>
- source_facts.package-manager


## Notes de sécurité

Aucun manifest local de gestion des secrets correspondant n'a été trouvé pour spirv-tools. Les métadonnées de paquet restent publiées ici afin que la couverture future dispose d'une URL stable.


## Détails de la base source

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** spirv-tools
- **Version Scheme:** 1
- **Revision:** 0
- **Head Version:** HEAD
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** no
- **URL Keys:** head, stable

## Autres enregistrements de gestionnaires de paquets

- Debian apt - spirv-tools - 2025.1~rc1-1: normalized package name match | Debian stable package indexes: spirv-tools from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | API and commands for processing SPIR-V modules | https://github.com/KhronosGroup/SPIRV-Tools
- Nix - spirv-tools: normalized package name match | nixpkgs package indexes: pkgs/by-name/sp/spirv-tools/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - spirv-tools - 2023.6~rc1-2: normalized package name match | Ubuntu 24.04 LTS package indexes: spirv-tools from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | API and commands for processing SPIR-V modules | https://github.com/KhronosGroup/SPIRV-Tools
- apk - spirv-tools - 1.4.341.0-r0: normalized package name match | Alpine Linux edge package indexes: spirv-tools from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | API and commands for processing SPIR-V modules | https://github.com/KhronosGroup/SPIRV-Tools
- apk - spirv-tools-dbg - 1.4.341.0-r0: normalized package name match | Alpine Linux edge package indexes: spirv-tools-dbg from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | API and commands for processing SPIR-V modules (debug symbols) | https://github.com/KhronosGroup/SPIRV-Tools
- apk - spirv-tools-dev - 1.4.341.0-r0: normalized package name match | Alpine Linux edge package indexes: spirv-tools-dev from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | API and commands for processing SPIR-V modules (development files) | https://github.com/KhronosGroup/SPIRV-Tools
- dnf - spirv-tools - 2026.2-3.fc45: normalized package name match | Fedora Rawhide package metadata: spirv-tools from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | API and commands for processing SPIR-V modules | https://github.com/KhronosGroup/SPIRV-Tools
- dnf - spirv-tools-devel - 2026.2-3.fc45: normalized package name match | Fedora Rawhide package metadata: spirv-tools-devel from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | Development files for spirv-tools | https://github.com/KhronosGroup/SPIRV-Tools
- dnf - spirv-tools-libs - 2026.2-3.fc45: normalized package name match | Fedora Rawhide package metadata: spirv-tools-libs from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | Library files for spirv-tools | https://github.com/KhronosGroup/SPIRV-Tools
- pacman - spirv-tools - 1:1.4.357.0-1: normalized package name match | Arch Linux sync databases: spirv-tools from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | API and commands for processing SPIR-V modules | https://www.khronos.org/spirv/
- zypper - libSPIRV-Tools-2026_3_rc1 - 2026.3~rc1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: libSPIRV-Tools-2026_3_rc1 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | SPIR-V tool component library | https://github.com/KhronosGroup/SPIRV-Tools
- zypper - libSPIRV-Tools-2026_3_rc1-32bit - 2026.3~rc1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: libSPIRV-Tools-2026_3_rc1-32bit from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | SPIR-V tool component library | https://github.com/KhronosGroup/SPIRV-Tools
- zypper - spirv-tools - 2026.3~rc1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: spirv-tools from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | API and commands for processing SPIR-V modules | https://github.com/KhronosGroup/SPIRV-Tools
- zypper - spirv-tools-devel - 2026.3~rc1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: spirv-tools-devel from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Development headers for the SPIR-V tool library | https://github.com/KhronosGroup/SPIRV-Tools
- zypper - spirv-tools-devel-32bit - 2026.3~rc1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: spirv-tools-devel-32bit from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Development headers for the SPIR-V tool library | https://github.com/KhronosGroup/SPIRV-Tools
- MacPorts - spirv-tools: normalized package name match | MacPorts ports tree: graphics/spirv-tools/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1


## Liens liés

- [Source-control packages](https://pkg.so/fr/source-control-tools/) - Belongs to a source-control command family.
- [Terminal utility packages](https://pkg.so/fr/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Text processing packages](https://pkg.so/fr/text-processing-tools/) - Matched text, document, or structured-data processing metadata.
- [Developer build packages](https://pkg.so/fr/developer-build-tools/) - Matched build, compiler, generator, or developer workflow metadata.
- [cmake](https://pkg.so/fr/brew/cmake/) - Build dependency declared by Homebrew.
- [mesa](https://pkg.so/fr/brew/mesa/) - Popular package that depends on this formula.
- [glslang](https://pkg.so/fr/brew/glslang/) - Popular package that depends on this formula.
- [ncnn](https://pkg.so/fr/brew/ncnn/) - Popular package that depends on this formula.
- [vulkan-validationlayers](https://pkg.so/fr/brew/vulkan-validationlayers/) - Popular package that depends on this formula.
- [asymptote](https://pkg.so/fr/brew/asymptote/) - Popular package that depends on this formula.
- [vulkan-extensionlayer](https://pkg.so/fr/brew/vulkan-extensionlayer/) - Popular package that depends on this formula.
- [spirv-llvm-translator](https://pkg.so/fr/brew/spirv-llvm-translator/) - Shares pkgdb curated category or tags: cli, compiler-toolchain, developer-tools, spir-v.
- [llvm](https://pkg.so/fr/brew/llvm/) - Shares pkgdb curated category or tags: cli, compiler-toolchain, developer-tools.
- [lld](https://pkg.so/fr/brew/lld/) - Shares pkgdb curated category or tags: cli, compiler-toolchain, developer-tools.
- [spirv-cross](https://pkg.so/fr/brew/spirv-cross/) - Shares pkgdb curated category or tags: cli, developer-tools, disassembler, spir-v.
- [qbe](https://pkg.so/fr/brew/qbe/) - Shares pkgdb curated category or tags: cli, compiler-toolchain, developer-tools.
- [vc4asm](https://pkg.so/fr/brew/vc4asm/) - Shares pkgdb curated category or tags: assembler, cli, developer-tools, disassembler.
- [binutils](https://pkg.so/fr/brew/binutils/) - Shares pkgdb curated category or tags: assembler, cli, developer-tools.
- [nasm](https://pkg.so/fr/brew/nasm/) - Shares pkgdb curated category or tags: assembler, cli, compiler-toolchain, developer-tools.
- [shaderc](https://pkg.so/fr/brew/shaderc/) - Local package facts share a topical domain. Shared terms: cli, compiler, developer, developer-tools, spir.

## Combined YAML source

View the package source record on GitHub. [combined/spirv-tools.yml](https://github.com/mxcl/pkgdb/blob/main/combined/spirv-tools.yml)


## Sources

- pkg.so package database
- Geiger risk classifier
- package-page enrichment
- curated package history
- package version freshness
- pkgdb category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
