mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 10:39:00 +08:00
63d9dcdd7e
Fixes #37189 - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "vcpkg-ci-llvm",
|
|
"version-string": "0",
|
|
"description": "LLVM features testing within CI.",
|
|
"license": null,
|
|
"supports": "!uwp & !(arm & windows)",
|
|
"dependencies": [
|
|
{
|
|
"name": "llvm",
|
|
"default-features": false,
|
|
"features": [
|
|
"clang",
|
|
"compiler-rt",
|
|
"default-targets",
|
|
"enable-abi-breaking-checks",
|
|
"enable-bindings",
|
|
"enable-eh",
|
|
"enable-rtti",
|
|
"enable-terminfo",
|
|
"enable-zlib",
|
|
"lld",
|
|
"lldb",
|
|
"tools"
|
|
]
|
|
},
|
|
{
|
|
"$comment": "Platform restriction due to CI artifact upload quirks; features which need utils",
|
|
"name": "llvm",
|
|
"default-features": false,
|
|
"features": [
|
|
"bolt",
|
|
"openmp",
|
|
"polly",
|
|
"utils"
|
|
],
|
|
"platform": "!static & !x86"
|
|
},
|
|
{
|
|
"$comment": "Platform restriction due to CI artifact upload quirks; libc",
|
|
"name": "llvm",
|
|
"default-features": false,
|
|
"features": [
|
|
"libc"
|
|
],
|
|
"platform": "linux"
|
|
}
|
|
]
|
|
}
|