vcpkg/scripts/test_ports/vcpkg-ci-llvm/vcpkg.json
Kai Pastor d1e11918f5
[vcpkg-ci-llvm] Find cacheable feature sets (#32352)
* [vcpkg-ci-llvm] Find cacheable feature sets

* [vcpkg-ci-llvm] Isolate utils, not tools; Move flang to linux

* [vcpkg-ci-llvm] Move flang to !static

* [vcpkg-ci-llvm] Move flang to !static & !x86

* [vcpkg-ci-llvm] Move flang to linux
2023-07-06 12:34:39 -07:00

51 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",
"default-targets",
"disable-assertions",
"disable-clang-static-analyzer",
"enable-abi-breaking-checks",
"enable-bindings",
"enable-eh",
"enable-rtti",
"enable-terminfo",
"enable-threads",
"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"
},
{
"$comment": "Platform restriction due to CI artifact upload quirks; flang",
"name": "llvm",
"default-features": false,
"features": [
"flang"
],
"platform": "linux"
}
]
}