diff options
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-llvm/vcpkg.json')
| -rw-r--r-- | vcpkg/scripts/test_ports/vcpkg-ci-llvm/vcpkg.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-llvm/vcpkg.json b/vcpkg/scripts/test_ports/vcpkg-ci-llvm/vcpkg.json new file mode 100644 index 0000000..ec09695 --- /dev/null +++ b/vcpkg/scripts/test_ports/vcpkg-ci-llvm/vcpkg.json @@ -0,0 +1,48 @@ +{ + "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; libc", + "name": "llvm", + "default-features": false, + "features": [ + "libc" + ], + "platform": "linux" + }, + { + "$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" + } + ] +} |