diff options
Diffstat (limited to 'dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang.inc')
-rw-r--r-- | dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang.inc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang.inc b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang.inc new file mode 100644 index 00000000..726b035d --- /dev/null +++ b/dynamic-layers/clang-layer/recipes-opencl/opencl-clang/opencl-clang.inc | |||
@@ -0,0 +1,33 @@ | |||
1 | SUMMARY = "Common clang is a thin wrapper library around clang" | ||
2 | DESCRIPTION = "Common clang has OpenCL-oriented API and is capable \ | ||
3 | to compile OpenCL C kernels to SPIR-V modules." | ||
4 | |||
5 | LICENSE = "NCSA" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e8a15bf1416762a09ece07e44c79118c" | ||
7 | |||
8 | SRC_URI = "git://github.com/intel/opencl-clang.git;branch=${BRANCH};protocol=https \ | ||
9 | file://0002-Request-native-clang-only-when-cross-compiling-464.patch \ | ||
10 | file://0001-cl_headers-CMakeLists.txt-use-clang-from-native-sysr.patch \ | ||
11 | " | ||
12 | |||
13 | inherit cmake | ||
14 | DEPENDS += "clang" | ||
15 | DEPENDS:append:class-target = " opencl-clang-native" | ||
16 | |||
17 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
18 | COMPATIBLE_HOST:libc-musl = "null" | ||
19 | |||
20 | DEPENDS += " spirv-llvm-translator" | ||
21 | |||
22 | EXTRA_OECMAKE += "\ | ||
23 | -DLLVM_TABLEGEN_EXE=${STAGING_BINDIR_NATIVE}/llvm-tblgen \ | ||
24 | -DCMAKE_SKIP_RPATH=TRUE \ | ||
25 | -DPREFERRED_LLVM_VERSION=${LLVMVERSION} \ | ||
26 | " | ||
27 | |||
28 | do_install:append:class-native() { | ||
29 | install -d ${D}${bindir} | ||
30 | install -m 0755 ${B}/bin/linux_resource_linker ${D}${bindir}/ | ||
31 | } | ||
32 | |||
33 | BBCLASSEXTEND = "native nativesdk" | ||