Automic VaultAutomic Vault

brew

llvm mit Homebrew, apk, chocolatey, apt, dnf, Nix, pacman, zypper, scoop, winget installieren

Prüfe Installationswege, Executables, Metadaten und Sicherheitshinweise für llvm in AI-Agent-Workflows.

Installation

Weitere Installationsbefehle

macOS

Homebrewverifiziert · 100%
brew install llvm

local Homebrew formula metadata

Linux

Alpine Linux apkverifiziert · 92%
sudo apk add llvm

Alpine Linux edge package indexes · llvm · Quelle: dl-cdn.alpinelinux.org

Debian aptverifiziert · 92%
sudo apt install llvm

Debian stable package indexes · llvm · Quelle: deb.debian.org

Fedora dnfverifiziert · 92%
sudo dnf install llvm

Fedora Rawhide package metadata · llvm · Quelle: dl.fedoraproject.org

Nixverifiziert · 92%
nix profile install nixpkgs#llvm

nixpkgs package indexes · llvm · Quelle: raw.githubusercontent.com

Arch Linux pacmanverifiziert · 92%
sudo pacman -S llvm

Arch Linux sync databases · llvm · Quelle: geo.mirror.pkgbuild.com

openSUSE zypperverifiziert · 92%
sudo zypper install llvm

openSUSE Tumbleweed package metadata · llvm · Quelle: download.opensuse.org

Windows

Chocolateyverifiziert · 92%
choco install llvm

Chocolatey community package catalog · llvm · Quelle: community.chocolatey.org

Scoopverifiziert · 92%
scoop install main/llvm

Scoop official bucket manifest trees · bucket/llvm.json · Quelle: api.github.com

Windows Package Managerverifiziert · 92%
winget install --id LLVM.LLVM -e

Windows Package Manager source index · LLVM.LLVM · Quelle: cdn.winget.microsoft.com

Überblick

Paketzusammenfassung

Next-gen compiler infrastructure

Befehle und Aliase

  • FileCheck
  • UnicodeNameMappingGenerator
  • amdgpu-arch
  • analyze-build
  • bugpoint
  • clang
  • clang++
  • clang-22
  • clang-apply-replacements
  • clang-change-namespace
  • clang-check
  • clang-cl
  • clang-cpp
  • clang-doc
  • clang-extdef-mapping
  • clang-include-cleaner
  • clang-include-fixer
  • clang-installapi
  • clang-linker-wrapper
  • clang-move
  • clang-nvlink-wrapper
  • clang-offload-bundler
  • clang-offload-packager
  • clang-query
  • clang-refactor
  • clang-reorder-fields
  • clang-repl
  • clang-scan-deps
  • clang-sycl-linker
  • clang-tblgen
  • clang-tidy
  • clangd

Verlauf

Projektgeschichte und Nutzung

LLVM is a modular compiler and toolchain infrastructure project packaged by Homebrew as the current llvm formula. It includes the LLVM core libraries and command-line tools, the Clang compiler frontend, LLDB debugger, LLD linker, libc++, MLIR tooling, and many smaller developer utilities.

Projektgeschichte

LLVM began as a University of Illinois research project to provide a modern SSA-based compilation strategy for static and dynamic languages. The official LLVM homepage describes the project as a collection of modular and reusable compiler and toolchain technologies, with LLVM now functioning as a project name rather than an acronym for a virtual machine.

The project grew from core optimizer and code-generation libraries into an umbrella project. The official overview lists major subprojects such as Clang for C-family languages, LLDB for native debugging, LLD for linking, libc++ for the C++ standard library, Flang for Fortran, and MLIR infrastructure for compiler construction. The GitHub README describes the repository as source for compilers, optimizers, and run-time environments.

Adoptionsgeschichte

LLVM became a package-manager staple because it is both an end-user toolchain and a dependency for other language runtimes, build systems, static analyzers, editor integrations, and cross-compilation stacks. The official homepage notes production use by commercial and open-source projects and continued academic use, which matches the broad package-manager coverage shown in the input metadata.

For Homebrew users, llvm is often installed to obtain a newer clang than Apple's system compiler, a full llvm-config and library stack, up-to-date linker and object-file tools, clang-format, clang-tidy, clangd, lldb, and architecture-specific utilities. Versioned Homebrew formulae such as llvm@14 through llvm@17 exist because downstream projects frequently need a stable ABI, code-generation behavior, or plugin API tied to a specific LLVM major release.

Wie es verwendet wird

Users install llvm to compile C, C++, Objective-C, and other LLVM-backed languages; run optimizer and code-generation tools such as opt and llc; inspect and transform object files with llvm-objdump, llvm-nm, llvm-ar, and llvm-strip; debug with lldb; format and analyze C-family source with clang-format, clang-tidy, and clangd; and build other packages that need llvm-config or LLVM libraries.

The package is also a build dependency for projects that embed LLVM as a library, generate LLVM IR, ship compiler plugins, or need MLIR and TableGen tooling. In package-manager culture, llvm is less a single command than a large toolchain substrate whose installed prefix can change the behavior of many builds.

Warum Paket-Nerds sich dafür interessieren

LLVM is one of the most consequential developer-tool packages in Unix package managers: it provides compilers, linkers, debuggers, binary utilities, formatters, language servers, and libraries that other packages compile against. Its formula is watched closely because a major LLVM bump can reveal C++ standard-library issues, linker changes, sanitizer behavior changes, and downstream projects that accidentally depended on private compiler internals.

The package is also historically important because it displaced the idea that a system compiler was a monolith. LLVM's reusable libraries let package ecosystems build many language frontends, analyzers, and toolchain experiments on common optimizer and code-generation components.

Zeitleiste

  • 2000: LLVM begins as a University of Illinois research project.
  • 2003: LLVM 1.0 is announced as an open compiler infrastructure release.
  • 2011: The LLVM name is treated as the project brand rather than an acronym.
  • 2016-12-07: The llvm/llvm-project monorepo is created on GitHub.
  • 2019: LLVM 9.0.0 and later releases use Apache-2.0 WITH LLVM-exception licensing.
  • 2022-03-23: LLVM 14.0.0 is published.
  • 2022-09-06: LLVM 15.0.0 is published.
  • 2023-03-17: LLVM 16.0.0 is published.
  • 2023-09-19: LLVM 17.0.1 is published.

Related projects

  • Clang, LLDB, LLD, libc++, Flang, MLIR, compiler-rt, OpenMP, and polly are LLVM umbrella subprojects or closely shipped components.
  • Projects such as Rust, Swift, Julia, Zig, Mesa, WebAssembly toolchains, and many static-analysis tools are common LLVM consumers in package-manager ecosystems.
  • Homebrew's llvm@14, llvm@15, llvm@16, and llvm@17 formulae preserve older major release lines for packages that cannot immediately follow the current llvm formula.

Sicherheitslage

Risikostufe: yellow

compiler and toolchain runtime.

Risikoklassifikator

yellow Risiko · hoch Konfidenz · runtime

Warum

  • compiler and toolchain runtime

Signale

  • override:llvm

Installationsverhalten

  • Homebrew deklariert einen Post-install-Hook für diese Formel.
  • Homebrew-Bottle-Metadaten sind für 6 Plattformziele verfügbar.
  • Installiert mit 4 Laufzeitabhängigkeiten.
  • Build-Metadaten listen 3 Build-Abhängigkeiten.

Empfohlene Prüfung

Prüfe vor unbeaufsichtigter Agent-Nutzung, ob das Tool Klartext-Credentials liest, Remote-Zustand schreibt, Artefakte veröffentlicht oder Plugins ausführt.

Executables

Installierte Executables

BefehlArtSichtbarkeitHinweis
FileCheckcliglobales Executable
UnicodeNameMappingGeneratorcliglobales Executable
amdgpu-archcliglobales Executable
analyze-buildcliglobales Executable
bugpointcliglobales Executable
clangcliglobales Executable
clang++cliglobales Executable
clang-22cliglobales Executable
clang-apply-replacementscliglobales Executable
clang-change-namespacecliglobales Executable
clang-checkcliglobales Executable
clang-clcliglobales Executable
clang-cppcliglobales Executable
clang-doccliglobales Executable
clang-extdef-mappingcliglobales Executable
clang-include-cleanercliglobales Executable
clang-include-fixercliglobales Executable
clang-installapicliglobales Executable
clang-linker-wrappercliglobales Executable
clang-movecliglobales Executable
clang-nvlink-wrappercliglobales Executable
clang-offload-bundlercliglobales Executable
clang-offload-packagercliglobales Executable
clang-querycliglobales Executable
clang-refactorcliglobales Executable
clang-reorder-fieldscliglobales Executable
clang-replcliglobales Executable
clang-scan-depscliglobales Executable
clang-sycl-linkercliglobales Executable
clang-tblgencliglobales Executable
clang-tidycliglobales Executable
clangdcliglobales Executable
countcliglobales Executable
diagtoolcliglobales Executable
dsymutilcliglobales Executable
find-all-symbolscliglobales Executable
hmaptoolcliglobales Executable
intercept-buildcliglobales Executable
llccliglobales Executable
lldbcliglobales Executable
lldb-argdumpercliglobales Executable
lldb-dapcliglobales Executable
lldb-instrcliglobales Executable
lldb-mcpcliglobales Executable
lldb-servercliglobales Executable
lldb-tblgencliglobales Executable
llicliglobales Executable
lli-child-targetcliglobales Executable
llvm-PerfectShufflecliglobales Executable
llvm-addr2linecliglobales Executable
llvm-arcliglobales Executable
llvm-ascliglobales Executable
llvm-bcanalyzercliglobales Executable
llvm-bitcode-stripcliglobales Executable
llvm-c-testcliglobales Executable
llvm-cascliglobales Executable
llvm-catcliglobales Executable
llvm-cfi-verifycliglobales Executable
llvm-cgdatacliglobales Executable
llvm-configcliglobales Executable
llvm-covcliglobales Executable
llvm-ctxprof-utilcliglobales Executable
llvm-cvtrescliglobales Executable
llvm-cxxdumpcliglobales Executable
llvm-cxxfiltcliglobales Executable
llvm-cxxmapcliglobales Executable
llvm-debuginfo-analyzercliglobales Executable
llvm-debuginfodcliglobales Executable
llvm-debuginfod-findcliglobales Executable
llvm-diffcliglobales Executable
llvm-discliglobales Executable
llvm-dlltoolcliglobales Executable
llvm-dwarfdumpcliglobales Executable
llvm-dwarfutilcliglobales Executable
llvm-dwpcliglobales Executable
llvm-exegesiscliglobales Executable
llvm-extractcliglobales Executable
llvm-gsymutilcliglobales Executable
llvm-ifscliglobales Executable
llvm-install-name-toolcliglobales Executable
llvm-ir2veccliglobales Executable
llvm-jitlinkcliglobales Executable
llvm-jitlink-executorcliglobales Executable
llvm-libcliglobales Executable
llvm-libtool-darwincliglobales Executable
llvm-linkcliglobales Executable
llvm-lipocliglobales Executable
llvm-ltocliglobales Executable
llvm-lto2cliglobales Executable
llvm-mccliglobales Executable
llvm-mcacliglobales Executable
llvm-mlcliglobales Executable
llvm-ml64cliglobales Executable
llvm-modextractcliglobales Executable
llvm-nmcliglobales Executable
llvm-objcopycliglobales Executable
llvm-objdumpcliglobales Executable
llvm-offload-binarycliglobales Executable
llvm-offload-wrappercliglobales Executable
llvm-opt-reportcliglobales Executable
llvm-otoolcliglobales Executable
llvm-pdbutilcliglobales Executable
llvm-profdatacliglobales Executable
llvm-profgencliglobales Executable
llvm-ranlibcliglobales Executable
llvm-rccliglobales Executable
llvm-readelfcliglobales Executable
llvm-readobjcliglobales Executable
llvm-readtapicliglobales Executable
llvm-reducecliglobales Executable
llvm-remarkutilcliglobales Executable
llvm-rtdyldcliglobales Executable
llvm-simcliglobales Executable
llvm-sizecliglobales Executable
llvm-splitcliglobales Executable
llvm-stresscliglobales Executable
llvm-stringscliglobales Executable
llvm-stripcliglobales Executable
llvm-symbolizercliglobales Executable
llvm-tblgencliglobales Executable
llvm-test-mustache-speccliglobales Executable
llvm-tli-checkercliglobales Executable
llvm-undnamecliglobales Executable
llvm-windrescliglobales Executable
llvm-xraycliglobales Executable
mlir-catcliglobales Executable
mlir-linalg-ods-yaml-gencliglobales Executable
mlir-lsp-servercliglobales Executable
mlir-minimal-optcliglobales Executable
mlir-minimal-opt-canonicalizecliglobales Executable
mlir-optcliglobales Executable
mlir-pdllcliglobales Executable
mlir-pdll-lsp-servercliglobales Executable
mlir-querycliglobales Executable
mlir-reducecliglobales Executable
mlir-rewritecliglobales Executable
mlir-runnercliglobales Executable
mlir-tblgencliglobales Executable
mlir-transform-optcliglobales Executable
mlir-translatecliglobales Executable
modularizecliglobales Executable
notcliglobales Executable
nvptx-archcliglobales Executable
obj2yamlcliglobales Executable
offload-archcliglobales Executable
optcliglobales Executable
pp-tracecliglobales Executable
reduce-chunk-listcliglobales Executable
run-clang-tidycliglobales Executable
sancovcliglobales Executable
sanstatscliglobales Executable
scan-buildcliglobales Executable
scan-build-pycliglobales Executable
scan-viewcliglobales Executable
split-filecliglobales Executable
tblgen-lsp-servercliglobales Executable
tblgen-to-irdlcliglobales Executable
verify-uselistordercliglobales Executable
yaml-benchcliglobales Executable
yaml2macho-corecliglobales Executable
yaml2objcliglobales Executable

Aktualität

Version und Aktualität

Diese Signale trennen das Alter der Seitengenerierung, Aktivität des Paketmanagers und Upstream-Release-Vergleich. Versionsrückstand wird nur gemeldet, wenn eine Evidenz-URL und vergleichbare Versionen vorhanden sind.

Seite generiert2026-07-10
Manager-Version22.1.8
Manager aktualisiert2026-06-25
lokale DatenOK
Upstreamnot checked
neueste erkannte Versionnicht erkannt

https://github.com/llvm/llvm-project

Installationsmetadaten

Paketmetadaten

Paketschlüsselbrew:llvm
Version22.1.8
PaketmanagerHomebrew
Paketmanager-Seitehttps://formulae.brew.sh/formula/llvm
Homepagehttps://llvm.org/
Repositoryhttps://github.com/llvm/llvm-project
Upstream-Dokumentationhttps://llvm.org/docs
LizenzApache-2.0 WITH LLVM-exception
Quellarchivhttps://github.com/llvm/llvm-project/releases/download/llvmorg-22.1.8/llvm-project-22.1.8.src.tar.xz
Zuletzt aktualisiert2026-06-25T13:37:48+02:00
Pulseupdated
Abhängigkeitenpython@3.14, xz, z3, zstd
Build-Abhängigkeitencmake, ninja, swig
Von macOS bereitgestellte Bibliothekenlibedit, libffi, ncurses
Bottleverfügbar (auf arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux)
Homebrew post-installdefiniert
Dienstkeiner deklariert
EinschränkungenCLANG_CONFIG_FILE_SYSTEM_DIR: $HOMEBREW_PREFIX/etc/clang CLANG_CONFIG_FILE_USER_DIR: ~/.config/clang LLD is now provided in a separate formula: brew install lld Using `clang`, `clang++`, etc., requires a CLT installation at `/Library/Developer/CommandLineTools`. If you don't want to install the CLT, you can write appropriate configuration files pointing to your SDK at ~/.config/clang. To use the bundled libunwind please use the following LDFLAGS: LDFLAGS="-L$HOMEBREW_PREFIX/opt/llvm/lib/unwind -lunwind" To use the bundled libc++ please use the following LDFLAGS: LDFLAGS="-L$HOMEBREW_PREFIX/opt/llvm/lib/c++ -L$HOMEBREW_PREFIX/opt/llvm/lib/unwind -lunwind" Features newer than system libc++ will require the following define to enable (support for this may be removed in a future major LLVM release): CPPFLAGS="-D_LIBCPP_DISABLE_AVAILABILITY" NOTE: You probably want to use the libunwind and libc++ provided by macOS unless you know what you're doing.

Registry-Fakten

Details aus der Quelldatenbank

Source DatabaseHomebrew formula API
Taphomebrew/core
Full Namellvm
Aliases
  • llvm@22
Version Scheme0
Revision0
Head VersionHEAD
Bottle Stable Root URLhttps://ghcr.io/v2/homebrew/core
Deprecatedno
Disabledno
Keg Onlyyes
URL Keys
  • head
  • stable

Source-Datenbank-Treffer

Andere Paketmanager-Einträge

Treffer stammen aus externen Paketmanager-Indizes und bleiben von lokalen Automic-Vault-Paketlinks getrennt.

Debian apt95%

llvm 1:19.0-63

Modular compiler and toolchain technologies

sudo apt install llvm
  • Section: devel
  • Architecture: amd64
  • Source Package: llvm-defaults
  • 2 Abhängigkeiten
  • normalized package name match
  • Abgeglichen nach: Llvm
Debian stable package indexes · deb.debian.org · Debian stable package indexes: llvm from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz
Nix95%

llvm

nix profile install nixpkgs#llvm
  • normalized package name match
  • Abgeglichen nach: Llvm
nixpkgs package indexes · raw.githubusercontent.com · nixpkgs package indexes: llvm from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix
Ubuntu apt95%

llvm 1:18.0-59~exp2

Low-Level Virtual Machine (LLVM)

sudo apt install llvm
  • Section: universe/devel
  • Architecture: amd64
  • Source Package: llvm-defaults
  • 2 Abhängigkeiten
  • normalized package name match
  • Abgeglichen nach: Llvm
Ubuntu 24.04 LTS package indexes · archive.ubuntu.com · Ubuntu 24.04 LTS package indexes: llvm from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz
apk95%

llvm 22-r0

Low Level Virtual Machine compiler system, default version.

https://llvm.org/

sudo apk add llvm
  • License: Apache-2.0
  • Architecture: x86_64
  • Source Package: llvm
  • 1 Abhängigkeiten
  • 1 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: llvm from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
apk95%

llvm-dev 22-r0

Low Level Virtual Machine compiler system, default version.

https://llvm.org/

sudo apk add llvm-dev
  • License: Apache-2.0
  • Architecture: x86_64
  • Source Package: llvm
  • 1 Abhängigkeiten
  • 1 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: llvm-dev from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
apk95%

llvm-gtest 22-r0

LLVM default gtest static libraries

https://llvm.org/

sudo apk add llvm-gtest
  • License: Apache-2.0
  • Architecture: x86_64
  • Source Package: llvm
  • 1 Abhängigkeiten
  • normalized package name match
  • Abgeglichen nach: Llvm
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: llvm-gtest from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
apk95%

llvm-libs 22-r0

LLVM 22 runtime library

https://llvm.org/

sudo apk add llvm-libs
  • License: Apache-2.0
  • Architecture: x86_64
  • Source Package: llvm
  • 1 Abhängigkeiten
  • normalized package name match
  • Abgeglichen nach: Llvm
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: llvm-libs from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
apk95%

llvm-linker-tools 22-r0

Low Level Virtual Machine compiler system, default version. (linker plugins)

https://llvm.org/

sudo apk add llvm-linker-tools
  • License: Apache-2.0
  • Architecture: x86_64
  • Source Package: llvm
  • 1 Abhängigkeiten
  • normalized package name match
  • Abgeglichen nach: Llvm
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: llvm-linker-tools from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
apk95%

llvm-static 22-r0

LLVM 22 static libraries

https://llvm.org/

sudo apk add llvm-static
  • License: Apache-2.0
  • Architecture: x86_64
  • Source Package: llvm
  • 1 Abhängigkeiten
  • normalized package name match
  • Abgeglichen nach: Llvm
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: llvm-static from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
apk95%

llvm-test-utils 22-r0

LLVM utilities for executing LLVM and Clang style test suites

https://llvm.org/

sudo apk add llvm-test-utils
  • License: Apache-2.0
  • Architecture: x86_64
  • Source Package: llvm
  • 1 Abhängigkeiten
  • 1 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: llvm-test-utils from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
dnf95%

clang 22.1.7-1.fc45

A C language family front-end for LLVM

http://llvm.org

sudo dnf install clang
  • License: Apache-2.0 WITH LLVM-exception OR NCSA
  • Category: Unspecified
  • Architecture: i686
  • Source Package: llvm
  • 9 Abhängigkeiten
  • 1 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Fedora Rawhide package metadata · dl.fedoraproject.org · Fedora Rawhide package metadata: clang from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst
dnf95%

clang-analyzer 22.1.7-1.fc45

A source code analysis framework

http://llvm.org

sudo dnf install clang-analyzer
  • License: Apache-2.0 WITH LLVM-exception OR NCSA OR MIT
  • Category: Unspecified
  • Architecture: x86_64
  • Source Package: llvm
  • 5 Abhängigkeiten
  • 1 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Fedora Rawhide package metadata · dl.fedoraproject.org · Fedora Rawhide package metadata: clang-analyzer from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst
dnf95%

clang-devel 22.1.7-1.fc45

Development header files for clang

http://llvm.org

sudo dnf install clang-devel
  • License: Apache-2.0 WITH LLVM-exception OR NCSA
  • Category: Unspecified
  • Architecture: i686
  • Source Package: llvm
  • 13 Abhängigkeiten
  • 3 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Fedora Rawhide package metadata · dl.fedoraproject.org · Fedora Rawhide package metadata: clang-devel from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst
dnf95%

clang-libs 22.1.7-1.fc45

Runtime library for clang

http://llvm.org

sudo dnf install clang-libs
  • License: Apache-2.0 WITH LLVM-exception OR NCSA
  • Category: Unspecified
  • Architecture: i686
  • Source Package: llvm
  • 9 Abhängigkeiten
  • 3 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Fedora Rawhide package metadata · dl.fedoraproject.org · Fedora Rawhide package metadata: clang-libs from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst
dnf95%

clang-resource-filesystem 22.1.7-1.fc45

Filesystem package that owns the clang resource directory

http://llvm.org

sudo dnf install clang-resource-filesystem
  • License: Apache-2.0 WITH LLVM-exception OR NCSA
  • Category: Unspecified
  • Architecture: i686
  • Source Package: llvm
  • 2 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Fedora Rawhide package metadata · dl.fedoraproject.org · Fedora Rawhide package metadata: clang-resource-filesystem from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst
dnf95%

clang-tools-extra 22.1.7-1.fc45

Extra tools for clang

http://llvm.org

sudo dnf install clang-tools-extra
  • License: Apache-2.0 WITH LLVM-exception OR NCSA
  • Category: Unspecified
  • Architecture: i686
  • Source Package: llvm
  • 13 Abhängigkeiten
  • 1 stellt bereit
  • normalized package name match
  • Abgeglichen nach: Llvm
Fedora Rawhide package metadata · dl.fedoraproject.org · Fedora Rawhide package metadata: clang-tools-extra from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst

Quellspur

Aus Repository-Daten generiert

Diese Seite wird von av-web aus dem privaten Paket-SQLite-Artefakt bereitgestellt, das scripts/generate-pkg-sqlite.py erstellt.

Verwendete Quellen

  • Geiger risk classifier
  • Nucleus package database
  • av.db category and tag curation
  • cross-ecosystem install command graph
  • curated package history
  • external package-manager database matches
  • package relationship graph
  • package version freshness
  • package-page enrichment