diff options
5 files changed, 14 insertions, 4 deletions
diff --git a/meta-oe/recipes-core/opencl/clpeak_1.1.5.bb b/meta-oe/recipes-core/opencl/clpeak_1.1.5.bb index 4744f788b9..2cbcdd873e 100644 --- a/meta-oe/recipes-core/opencl/clpeak_1.1.5.bb +++ b/meta-oe/recipes-core/opencl/clpeak_1.1.5.bb | |||
| @@ -8,7 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" | |||
| 8 | 8 | ||
| 9 | SRCREV = "b2e647ffb8f42aa22ce4b0194d6ef6d16d5002b0" | 9 | SRCREV = "b2e647ffb8f42aa22ce4b0194d6ef6d16d5002b0" |
| 10 | 10 | ||
| 11 | inherit cmake features_check | ||
| 11 | 12 | ||
| 12 | inherit cmake | 13 | REQUIRED_DISTRO_FEATURES = "opencl" |
| 13 | 14 | ||
| 14 | DEPENDS += "opencl-clhpp virtual/libopencl1" | 15 | DEPENDS += "opencl-clhpp virtual/libopencl1" |
diff --git a/meta-oe/recipes-core/opencl/ocl-icd_2.3.2.bb b/meta-oe/recipes-core/opencl/ocl-icd_2.3.2.bb index f31c51c67e..44fead551e 100644 --- a/meta-oe/recipes-core/opencl/ocl-icd_2.3.2.bb +++ b/meta-oe/recipes-core/opencl/ocl-icd_2.3.2.bb | |||
| @@ -9,8 +9,9 @@ SRC_URI = "git://github.com/OCL-dev/ocl-icd.git;protocol=https;branch=master" | |||
| 9 | 9 | ||
| 10 | SRCREV = "fdde6677b21329432db8b481e2637cd10f7d3cb2" | 10 | SRCREV = "fdde6677b21329432db8b481e2637cd10f7d3cb2" |
| 11 | 11 | ||
| 12 | inherit autotools features_check | ||
| 12 | 13 | ||
| 13 | inherit autotools | 14 | REQUIRED_DISTRO_FEATURES = "opencl" |
| 14 | 15 | ||
| 15 | DEPENDS = "ruby-native" | 16 | DEPENDS = "ruby-native" |
| 16 | PROVIDES = "virtual/libopencl1" | 17 | PROVIDES = "virtual/libopencl1" |
diff --git a/meta-oe/recipes-core/opencl/opencl-cts_2025.04.14.bb b/meta-oe/recipes-core/opencl/opencl-cts_2025.04.14.bb index b0f6575e71..62b59ace13 100644 --- a/meta-oe/recipes-core/opencl/opencl-cts_2025.04.14.bb +++ b/meta-oe/recipes-core/opencl/opencl-cts_2025.04.14.bb | |||
| @@ -3,7 +3,9 @@ DESCRIPTION = "OpenCL CTS test suite" | |||
| 3 | LICENSE = "Apache-2.0" | 3 | LICENSE = "Apache-2.0" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" | 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" |
| 5 | 5 | ||
| 6 | inherit pkgconfig cmake | 6 | inherit pkgconfig cmake features_check |
| 7 | |||
| 8 | REQUIRED_DISTRO_FEATURES = "opencl" | ||
| 7 | 9 | ||
| 8 | DEPENDS += "opencl-headers virtual/libopencl1" | 10 | DEPENDS += "opencl-headers virtual/libopencl1" |
| 9 | RDEPENDS:${PN} += "python3-core python3-io" | 11 | RDEPENDS:${PN} += "python3-core python3-io" |
diff --git a/meta-oe/recipes-core/opencl/opencl-icd-loader_2024.05.08.bb b/meta-oe/recipes-core/opencl/opencl-icd-loader_2024.05.08.bb index 3fb08efaf4..59d29e821a 100644 --- a/meta-oe/recipes-core/opencl/opencl-icd-loader_2024.05.08.bb +++ b/meta-oe/recipes-core/opencl/opencl-icd-loader_2024.05.08.bb | |||
| @@ -4,7 +4,9 @@ LICENSE = "Apache-2.0" | |||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" |
| 5 | SECTION = "base" | 5 | SECTION = "base" |
| 6 | 6 | ||
| 7 | inherit pkgconfig cmake | 7 | inherit pkgconfig cmake features_check |
| 8 | |||
| 9 | REQUIRED_DISTRO_FEATURES = "opencl" | ||
| 8 | 10 | ||
| 9 | DEPENDS += "opencl-headers" | 11 | DEPENDS += "opencl-headers" |
| 10 | 12 | ||
diff --git a/meta-oe/recipes-support/opencl/clinfo_3.0.23.01.25.bb b/meta-oe/recipes-support/opencl/clinfo_3.0.23.01.25.bb index 4d9ed1b8ca..4d5e205142 100644 --- a/meta-oe/recipes-support/opencl/clinfo_3.0.23.01.25.bb +++ b/meta-oe/recipes-support/opencl/clinfo_3.0.23.01.25.bb | |||
| @@ -7,6 +7,10 @@ HOMEPAGE = "https://github.com/Oblomov/clinfo" | |||
| 7 | LICENSE = "CC0-1.0" | 7 | LICENSE = "CC0-1.0" |
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fd8857f774dfb0eefe1e80c8f9240a7e" | 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fd8857f774dfb0eefe1e80c8f9240a7e" |
| 9 | 9 | ||
| 10 | inherit features_check | ||
| 11 | |||
| 12 | REQUIRED_DISTRO_FEATURES = "opencl" | ||
| 13 | |||
| 10 | SRC_URI = "git://github.com/Oblomov/clinfo.git;protocol=https;branch=master" | 14 | SRC_URI = "git://github.com/Oblomov/clinfo.git;protocol=https;branch=master" |
| 11 | 15 | ||
| 12 | SRCREV = "748c3930a9b9cb826e631d77439e2cb8f84f5bcf" | 16 | SRCREV = "748c3930a9b9cb826e631d77439e2cb8f84f5bcf" |
