mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 11:53:07 +08:00
[halide] fix core build (#30449)
This commit is contained in:
parent
f66871330f
commit
34aa948f6c
@ -17,6 +17,7 @@ vcpkg_check_features(
|
|||||||
target-amdgpu TARGET_AMDGPU
|
target-amdgpu TARGET_AMDGPU
|
||||||
target-arm TARGET_ARM
|
target-arm TARGET_ARM
|
||||||
target-d3d12compute TARGET_D3D12COMPUTE
|
target-d3d12compute TARGET_D3D12COMPUTE
|
||||||
|
target-opengl-compute TARGET_OPENGLCOMPUTE
|
||||||
target-hexagon TARGET_HEXAGON
|
target-hexagon TARGET_HEXAGON
|
||||||
target-metal TARGET_METAL
|
target-metal TARGET_METAL
|
||||||
target-mips TARGET_MIPS
|
target-mips TARGET_MIPS
|
||||||
|
@ -1,11 +1,43 @@
|
|||||||
{
|
{
|
||||||
"name": "halide",
|
"name": "halide",
|
||||||
"version": "15.0.0",
|
"version": "15.0.0",
|
||||||
|
"port-version": 1,
|
||||||
"description": "Halide is a programming language designed to make it easier to write high-performance image and array processing code on modern machines.",
|
"description": "Halide is a programming language designed to make it easier to write high-performance image and array processing code on modern machines.",
|
||||||
"homepage": "https://github.com/halide/Halide",
|
"homepage": "https://github.com/halide/Halide",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"supports": "!uwp",
|
"supports": "!uwp",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
{
|
||||||
|
"name": "halide",
|
||||||
|
"default-features": false,
|
||||||
|
"features": [
|
||||||
|
"target-arm"
|
||||||
|
],
|
||||||
|
"platform": "arm32"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "halide",
|
||||||
|
"default-features": false,
|
||||||
|
"features": [
|
||||||
|
"target-aarch64"
|
||||||
|
],
|
||||||
|
"platform": "arm64"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "halide",
|
||||||
|
"default-features": false,
|
||||||
|
"features": [
|
||||||
|
"target-x86"
|
||||||
|
],
|
||||||
|
"platform": "x86 | x64"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "halide",
|
||||||
|
"features": [
|
||||||
|
"target-all"
|
||||||
|
],
|
||||||
|
"platform": "!x86 & !x64 & !arm"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "llvm",
|
"name": "llvm",
|
||||||
"default-features": false,
|
"default-features": false,
|
||||||
@ -24,46 +56,7 @@
|
|||||||
"host": true
|
"host": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"default-features": [
|
|
||||||
"jit"
|
|
||||||
],
|
|
||||||
"features": {
|
"features": {
|
||||||
"jit": {
|
|
||||||
"description": "Include targets required for jit compilation",
|
|
||||||
"dependencies": [
|
|
||||||
{
|
|
||||||
"name": "halide",
|
|
||||||
"default-features": false,
|
|
||||||
"features": [
|
|
||||||
"target-aarch64"
|
|
||||||
],
|
|
||||||
"platform": "arm64"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "halide",
|
|
||||||
"default-features": false,
|
|
||||||
"features": [
|
|
||||||
"target-x86"
|
|
||||||
],
|
|
||||||
"platform": "x86 | x64"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "halide",
|
|
||||||
"default-features": false,
|
|
||||||
"features": [
|
|
||||||
"target-arm"
|
|
||||||
],
|
|
||||||
"platform": "arm & !arm64"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "halide",
|
|
||||||
"features": [
|
|
||||||
"target-all"
|
|
||||||
],
|
|
||||||
"platform": "!x86 & !x64 & !arm & !arm64"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"target-aarch64": {
|
"target-aarch64": {
|
||||||
"description": "Include AArch64 target",
|
"description": "Include AArch64 target",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@ -92,6 +85,7 @@
|
|||||||
"target-mips",
|
"target-mips",
|
||||||
"target-nvptx",
|
"target-nvptx",
|
||||||
"target-opencl",
|
"target-opencl",
|
||||||
|
"target-opengl-compute",
|
||||||
"target-powerpc",
|
"target-powerpc",
|
||||||
"target-riscv",
|
"target-riscv",
|
||||||
"target-x86"
|
"target-x86"
|
||||||
@ -168,6 +162,9 @@
|
|||||||
"target-opencl": {
|
"target-opencl": {
|
||||||
"description": "Include OpenCL-C target"
|
"description": "Include OpenCL-C target"
|
||||||
},
|
},
|
||||||
|
"target-opengl-compute": {
|
||||||
|
"description": "Include OpenGL Compute target"
|
||||||
|
},
|
||||||
"target-powerpc": {
|
"target-powerpc": {
|
||||||
"description": "Include PowerPC target",
|
"description": "Include PowerPC target",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
@ -3014,7 +3014,7 @@
|
|||||||
},
|
},
|
||||||
"halide": {
|
"halide": {
|
||||||
"baseline": "15.0.0",
|
"baseline": "15.0.0",
|
||||||
"port-version": 0
|
"port-version": 1
|
||||||
},
|
},
|
||||||
"happly": {
|
"happly": {
|
||||||
"baseline": "2021-03-19",
|
"baseline": "2021-03-19",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "747567f07492ad16950a115456d31ba746a3bd10",
|
||||||
|
"version": "15.0.0",
|
||||||
|
"port-version": 1
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "1d7e84604e36eb833964af361772ebcf5e3953c5",
|
"git-tree": "1d7e84604e36eb833964af361772ebcf5e3953c5",
|
||||||
"version": "15.0.0",
|
"version": "15.0.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user