llvm: Update to version 10.0.0 (#930)

This commit is contained in:
shyun3 2020-03-26 12:04:03 -07:00 committed by GitHub
parent 2bddbfcead
commit be1eea819c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,72 +1,82 @@
{
"version": "9.0.0",
"version": "10.0.0",
"description": "Collection of modular and reusable compiler and toolchain technologies.",
"homepage": "https://www.llvm.org/",
"homepage": "https://www.llvm.org",
"license": "NCSA",
"architecture": {
"64bit": {
"url": "https://releases.llvm.org/9.0.0/LLVM-9.0.0-win64.exe#/dl.7z",
"hash": "71ed99a6720945d76b6772584735f2ed472f12719dff184a0b1a6a35047b8863"
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/LLVM-10.0.0-win64.exe#/dl.7z",
"hash": "893f8a12506f8ad29ca464d868fb432fdadd782786a10655b86575fc7fc1a562"
},
"32bit": {
"url": "https://releases.llvm.org/9.0.0/LLVM-9.0.0-win32.exe#/dl.7z",
"hash": "089e226dc0d3ecb292f344cdbed96c5d9a705564cc578957a955b4ed71c70cae"
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/LLVM-10.0.0-win32.exe#/dl.7z",
"hash": "322f93717ce2b27a966779254d41be0fcd618a624619a8e2bb5aa6313ab4157b"
}
},
"pre_install": "Remove-Item \"$dir\\`$*\" -Recurse",
"bin": [
"bin\\clang.exe",
"bin\\clang++.exe",
"bin\\clang-apply-replacements.exe",
"bin\\clang-change-namespace.exe",
"bin\\clang-check.exe",
"bin\\clang-cl.exe",
"bin\\clang-cpp.exe",
"bin\\clangd.exe",
"bin\\clang-doc.exe",
"bin\\clang-extdef-mapping.exe",
"bin\\clang-format.exe",
"bin\\clang-import-test.exe",
"bin\\clang-include-fixer.exe",
"bin\\clang-move.exe",
"bin\\clang-offload-bundler.exe",
"bin\\clang-offload-wrapper.exe",
"bin\\clang-query.exe",
"bin\\clang-refactor.exe",
"bin\\clang-rename.exe",
"bin\\clang-reorder-fields.exe",
"bin\\clang-scan-deps.exe",
"bin\\clang-tidy.exe",
"bin\\clang.exe",
"bin\\clangd.exe",
"bin\\find-all-symbols.exe",
"bin\\git-clang-format",
"bin\\hmaptool",
"bin\\ld.lld.exe",
"bin\\ld64.lld.exe",
"bin\\lld-link.exe",
"bin\\lld.exe",
"bin\\lldb.exe",
"bin\\lldb-argdumper.exe",
"bin\\lldb-instr.exe",
"bin\\lldb-mi.exe",
"bin\\lldb-server.exe",
"bin\\lldb-vscode.exe",
"bin\\lldb.exe",
"bin\\lld-link.exe",
"bin\\llvm-ar.exe",
"bin\\llvm-cov.exe",
"bin\\llvm-cxxfilt.exe",
"bin\\llvm-lib.exe",
"bin\\llvm-nm.exe",
"bin\\llvm-objcopy.exe",
"bin\\llvm-objdump.exe",
"bin\\llvm-profdata.exe",
"bin\\llvm-ranlib.exe",
"bin\\llvm-rc.exe",
"bin\\llvm-size.exe",
"bin\\llvm-strings.exe",
"bin\\llvm-strip.exe",
"bin\\llvm-symbolizer.exe",
"bin\\modularize.exe",
"bin\\pp-trace.exe",
"bin\\scan-build.bat",
"bin\\wasm-ld.exe"
],
"checkver": "releases/download.html#([\\d.]+)",
"checkver": {
"url": "https://releases.llvm.org/download.html",
"regex": "Download LLVM ([\\d.]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://releases.llvm.org/$version/LLVM-$version-win64.exe#/dl.7z"
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/LLVM-$version-win64.exe#/dl.7z"
},
"32bit": {
"url": "https://releases.llvm.org/$version/LLVM-$version-win32.exe#/dl.7z"
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/LLVM-$version-win32.exe#/dl.7z"
}
}
}