diff options
author | Naveen Saini <naveen.kumar.saini@intel.com> | 2020-06-04 16:59:45 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-05 18:43:15 -0700 |
commit | 4b83eab28ec20424308c9e02f7e551a97eff8fda (patch) | |
tree | c3cbba51a21a1a0e5603ee850e853f8b2a26e643 | |
parent | 1b0ce2ce1d388d223ff337e5683d9b026b7082ba (diff) | |
download | meta-openembedded-4b83eab28ec20424308c9e02f7e551a97eff8fda.tar.gz |
ocl-icd_git.bb: Add recipe for OpenCL ICD loaders
This recipe creates package which aims at creating an Open Source
alternative to vendor specific OpenCL ICD loaders.
Signed-off-by: Min Ma <min.ma@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-core/ocl-icd/ocl-icd_git.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/ocl-icd/ocl-icd_git.bb b/meta-oe/recipes-core/ocl-icd/ocl-icd_git.bb new file mode 100644 index 0000000000..d14ec53e3d --- /dev/null +++ b/meta-oe/recipes-core/ocl-icd/ocl-icd_git.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | SUMMARY = "OpenCL ICD library" | ||
2 | DESCRIPTION = "Open Source alternative to vendor specific OpenCL ICD loaders." | ||
3 | |||
4 | # The LICENSE is BSD 2-Clause "Simplified" License | ||
5 | LICENSE = "BSD-2-Clause" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=232257bbf7320320725ca9529d3782ab" | ||
7 | |||
8 | SRC_URI = "git://github.com/OCL-dev/ocl-icd.git;protocol=https" | ||
9 | |||
10 | PV = "2.2.12+git${SRCPV}" | ||
11 | SRCREV = "af79aebe4649f30dbd711c1bf6fc661eac6e5f01" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit autotools | ||
16 | |||
17 | DEPENDS = "ruby-native" | ||
18 | |||
19 | BBCLASSEXTEND = "native" | ||