diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2019-03-29 13:19:27 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2019-05-17 19:33:15 +0800 |
commit | 613bc1ffc315ac940dc99071bcf13565cd9a40ce (patch) | |
tree | e1a83713f02399f3ae96472a18aa9245f600076e | |
parent | ec27f5a1c66464f8c20b0b0079ae66a52e86f6f2 (diff) | |
download | meta-intel-613bc1ffc315ac940dc99071bcf13565cd9a40ce.tar.gz meta-intel-613bc1ffc315ac940dc99071bcf13565cd9a40ce.tar.bz2 meta-intel-613bc1ffc315ac940dc99071bcf13565cd9a40ce.zip |
build linux_linker from common clang
Build only linux_linker component from common clang library for native
use when compiling the target version.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r-- | recipes-devtools/opencl/opencl-clang-native_8.0.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-devtools/opencl/opencl-clang-native_8.0.0.bb b/recipes-devtools/opencl/opencl-clang-native_8.0.0.bb new file mode 100644 index 00000000..cfba8d97 --- /dev/null +++ b/recipes-devtools/opencl/opencl-clang-native_8.0.0.bb @@ -0,0 +1,25 @@ +SUMMARY = "Common clang is a thin wrapper library around clang" +DESCRIPTION = "Common clang has OpenCL-oriented API and is capable \ + to compile OpenCL C kernels to SPIR-V modules." + +LICENSE = "NCSA" +LIC_FILES_CHKSUM = "file://LICENSE;md5=e8a15bf1416762a09ece07e44c79118c" + +SRC_URI = "git://github.com/intel/opencl-clang.git;branch=ocl-open-80;protocol=https" + +SRCREV = "daf5e4dd718477ae8cf89a283c653939d9182f15" + +S = "${WORKDIR}/git" + +inherit native + +do_configure[noexec] = "1" + +do_compile() { + ${CC} linux_linker/linux_resource_linker.cpp -o linux_resource_linker +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 linux_resource_linker ${D}${bindir}/ +} |