Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,057,891

Downloads of v 20.1.7:

37

Last Update:

13 Jun 2025

Published Date:

13 Jun 2025

Package Maintainer(s):

Software Author(s):

  • LLVM team

Tags:

LLVM

(Waiting for Maintainer to take corrective action)

  • 1
  • 2
  • 3

20.1.7 | Updated: 13 Jun 2025

Downloads:

2,057,891

Downloads of v 20.1.7:

37

Published:

13 Jun 2025

Maintainer(s):

Software Author(s):

  • LLVM team

LLVM 20.1.7

(Waiting for Maintainer to take corrective action)

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by LLVM team. The inclusion of LLVM team trademark(s), if any, upon this webpage is solely to identify LLVM team goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Pending

IMPORTANT

This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.

  • Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
  • This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
  • You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
  • There are also no guarantees that it will be approved.
WARNING

There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.

bspeice (maintainer) on 13 Jun 2025 22:42:17 +00:00:

User 'bspeice' (maintainer) submitted package.

chocolatey-ops (reviewer) on 13 Jun 2025 23:18:11 +00:00:

llvm has passed automated validation. It may have or may still fail other checks like testing (verification).
Congratulations! This package passed automatic validation review without flagging on any issues the validator currently checks. A human review could still turn up issues a computer may not easily find.

chocolatey-ops (reviewer) on 14 Jun 2025 06:33:22 +00:00:

llvm has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/b1e4553b01ad3ecf0fa6a860877437b9 for details.
The package status will be changed and will be waiting on your next actions.

  • NEW! We have a test environment for you to replicate the testing we do. This can be used at any time to test packages! See https://github.com/chocolatey-community/chocolatey-test-environment
  • Please log in and leave a review comment if you have questions and/or comments.
  • If you see the verifier needs to rerun testing against the package without resubmitting (a issue in the test results), you can do that on the package page in the review section.
  • If the verifier is incompatible with the package, please log in and leave a review comment if the package needs to bypass testing (e.g. package installs specific drivers).
  • Automated testing can also fail when a package is not completely silent or has pop ups (AutoHotKey can assist - a great example is the VeraCrypt package).
  • A package that cannot be made completely unattended should have the notSilent tag. Note that this must be approved by moderators.
Description

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

This package installs all Windows tools, which includes but is not limited to:

  • clang
  • clang-cl
  • clangd
  • clang++
  • clang-format
  • lld
  • llvm-objdump

tools\chocolateyinstall.ps1

$ErrorActionPreference = 'Stop';

$packageName = $env:ChocolateyPackageName
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url32 = 'https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.7/LLVM-20.1.7-win32.exe'
$checksum32 = '6cb6031f01bde9bc1c6ca7354c0865fca02f48346cf01296e7ffdaf117cab020'
$url64 = 'https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.7/LLVM-20.1.7-win64.exe'
$checksum64 = '486e49650d8fe74987c82d3918e4f4b657e7c634fe1710817dc665cfbcb0fa52'

$packageArgs = @{
  packageName    = $packageName
  unzipLocation  = $toolsDir
  fileType       = 'EXE'
  url            = $url32
  url64bit       = $url64

  softwareName   = 'llvm*'

  checksum       = $checksum32
  checksumType   = 'sha256'
  checksum64     = $checksum64
  checksumType64 = 'sha256'


  silentArgs     = '/S'
  validExitCodes = @(0)
}


Install-ChocolateyPackage @packageArgs

# Check if Visual Studio is installed
# While there have been some reports of this not working well for some users, it is a method recommended by MSFT:
# https://docs.microsoft.com/en-us/visualstudio/install/tools-for-managing-visual-studio-instances?view=vs-2019#using-windows-management-instrumentation-wmi
# I'm open to other suggestions for detection, but can confirm that this works for both regular and admin shells for me.
try {
  (Get-CimInstance MSFT_VSInstance) | out-null
}
catch {
  Write-Host "NOTE: Visual Studio not detected. LLVM does not provide a C/C++ standard library and may be unable to locate MSVC headers."
}

Install-ChocolateyPath "$($env:SystemDrive)\Program Files\LLVM\bin" "Machine" # Machine will assert administrative rights
Install-ChocolateyPath "$($env:SystemDrive)\Program Files (x86)\LLVM\bin" "Machine" # Machine will assert administrative rights
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = $env:ChocolateyPackageName
$softwareName = 'llvm*'
$installerType = 'EXE'

$silentArgs = '/S'
$validExitCodes = @(0)

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName

if ($key.Count -eq 1) {
  $key | % {
    $file = "$($_.UninstallString)"

    if ($installerType -eq 'MSI') {
      $silentArgs = "$($_.PSChildName) $silentArgs"

      $file = ''
    }

    Uninstall-ChocolateyPackage -PackageName $packageName `
      -FileType $installerType `
      -SilentArgs "$silentArgs" `
      -ValidExitCodes $validExitCodes `
      -File "$file"
  }
}
elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
}
elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % { Write-Warning "- $_.DisplayName" }
}

No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.

Add to Builder Version Downloads Last Updated Status
LLVM 20.1.7 37 Friday, June 13, 2025
Waiting for Maintainer
LLVM 20.1.3 5854 Tuesday, April 22, 2025 Approved
LLVM 20.1.2 6368 Saturday, April 12, 2025 Approved
LLVM 20.1.0 22348 Tuesday, March 11, 2025 Approved
LLVM 19.1.7 29123 Friday, February 21, 2025 Approved
LLVM 19.1.5 38727 Saturday, December 7, 2024 Approved
LLVM 19.1.3 19629 Thursday, November 7, 2024 Approved
LLVM 19.1.2 14570 Saturday, October 19, 2024 Approved
LLVM 19.1.0 65867 Saturday, September 21, 2024 Approved
LLVM 18.1.8 46894 Monday, July 15, 2024 Approved
LLVM 18.1.6 56084 Wednesday, May 22, 2024 Approved
LLVM 18.1.5 15817 Friday, May 3, 2024 Approved
LLVM 18.1.4 10099 Friday, April 19, 2024 Approved
LLVM 18.1.3 3127 Monday, April 15, 2024 Approved
LLVM 18.1.2 10491 Friday, March 29, 2024 Approved
LLVM 18.1.0 20554 Wednesday, March 6, 2024 Approved
LLVM 17.0.6 87172 Friday, December 1, 2023 Approved
LLVM 17.0.5 4669 Sunday, November 19, 2023 Approved
LLVM 17.0.3 13948 Wednesday, October 18, 2023 Approved
LLVM 17.0.2 21724 Wednesday, October 4, 2023 Approved
LLVM 17.0.1 53120 Tuesday, September 19, 2023 Approved
LLVM 16.0.6 49447 Friday, June 16, 2023 Approved
LLVM 16.0.5 5687 Sunday, June 4, 2023 Approved
LLVM 16.0.4 2509 Monday, May 29, 2023 Approved
LLVM 16.0.3 8559 Wednesday, May 3, 2023 Approved
LLVM 16.0.2 4140 Monday, April 24, 2023 Approved
LLVM 16.0.1 6786 Saturday, April 8, 2023 Approved
LLVM 16.0.0 25920 Saturday, March 25, 2023 Approved
LLVM 15.0.7 28615 Tuesday, February 14, 2023 Approved
LLVM 15.0.5 37753 Wednesday, November 16, 2022 Approved
LLVM 15.0.4 5055 Saturday, November 5, 2022 Approved
LLVM 15.0.3 4148 Wednesday, October 19, 2022 Approved
LLVM 15.0.2 7422 Tuesday, October 4, 2022 Approved
LLVM 15.0.1 4841 Wednesday, September 21, 2022 Approved
LLVM 15.0.0 4852 Tuesday, September 6, 2022 Approved
LLVM 14.0.6 29685 Monday, July 4, 2022 Approved
LLVM 14.0.5 3492 Saturday, June 18, 2022 Exempted
LLVM 14.0.4 2611 Thursday, May 26, 2022 Exempted
LLVM 14.0.3 5300 Saturday, April 30, 2022 Exempted
LLVM 14.0.1 3461 Monday, April 18, 2022 Approved
LLVM 14.0.0 32642 Thursday, March 24, 2022 Exempted
LLVM 13.0.1 197322 Tuesday, February 8, 2022 Exempted
LLVM 13.0.0 40284 Saturday, October 9, 2021 Exempted
LLVM 12.0.1 27090 Thursday, August 19, 2021 Approved
LLVM 12.0.0 76154 Thursday, April 15, 2021 Approved
LLVM 11.1.0 41917 Friday, April 2, 2021 Approved
LLVM 11.0.1 314806 Saturday, January 23, 2021 Approved
LLVM 11.0.0 183592 Wednesday, October 14, 2020 Approved
LLVM 10.0.0 116614 Thursday, March 26, 2020 Approved
LLVM 9.0.1 17010 Saturday, February 22, 2020 Approved
LLVM 9.0.0 31040 Sunday, September 22, 2019 Approved
LLVM 8.0.1 19611 Wednesday, August 14, 2019 Approved
LLVM 8.0.0 22409 Saturday, March 23, 2019 Approved
LLVM 7.0.1 11246 Saturday, January 19, 2019 Approved
LLVM 7.0.0 91535 Wednesday, September 19, 2018 Approved
LLVM 6.0.1 6420 Tuesday, July 24, 2018 Approved
LLVM 6.0.0.20180508 1517 Tuesday, May 8, 2018 Approved
LLVM 6.0.0 1130 Saturday, March 10, 2018 Approved

This package has no dependencies.

Discussion for the LLVM Package

Ground Rules:

  • This discussion is only about LLVM and the LLVM package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or LLVM, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus