diff options
author | Min Ma <min.ma@xilinx.com> | 2019-03-08 14:11:57 -0800 |
---|---|---|
committer | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2019-06-28 15:45:35 -0700 |
commit | 1ac4882e206fe38dd4a2f7cc71165826f57d9f93 (patch) | |
tree | ffa456ee7a710b25b099bff6b55d44992f1531f6 | |
parent | 1643706e73167f6bbf5b7ac654367e02ed8de86e (diff) | |
download | meta-xilinx-1ac4882e206fe38dd4a2f7cc71165826f57d9f93.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>
-rw-r--r-- | meta-xilinx-bsp/recipes-xrt/ocl-icd/ocl-icd_git.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-xilinx-bsp/recipes-xrt/ocl-icd/ocl-icd_git.bb b/meta-xilinx-bsp/recipes-xrt/ocl-icd/ocl-icd_git.bb new file mode 100644 index 00000000..d14ec53e --- /dev/null +++ b/meta-xilinx-bsp/recipes-xrt/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" | ||