diff options
author | Jose Quaresma <quaresma.jose@gmail.com> | 2020-10-30 16:25:16 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-11-02 09:00:52 -0800 |
commit | 8a5d7f28a02a18cd26749f7b97c1e85128fda720 (patch) | |
tree | 3c2851e9006030023507aecd2545f7b67576c382 /meta-oe/recipes-graphics | |
parent | b4d7b1ee421d9ae75548ac0c0dd0ea9405a0571e (diff) | |
download | meta-openembedded-8a5d7f28a02a18cd26749f7b97c1e85128fda720.tar.gz |
spirv-tools: moved into OE-core, delete from meta-oe
https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=5f6470eb2c1e5b5aa578031830f057d63d4ae230
Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics')
-rw-r--r-- | meta-oe/recipes-graphics/spir/spirv-tools_git.bb | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/meta-oe/recipes-graphics/spir/spirv-tools_git.bb b/meta-oe/recipes-graphics/spir/spirv-tools_git.bb deleted file mode 100644 index 8e8388e8d..000000000 --- a/meta-oe/recipes-graphics/spir/spirv-tools_git.bb +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | SUMMARY = "The SPIR-V Tools project provides an API and commands for \ | ||
2 | processing SPIR-V modules" | ||
3 | DESCRIPTION = "The project includes an assembler, binary module parser, \ | ||
4 | disassembler, validator, and optimizer for SPIR-V." | ||
5 | LICENSE = "Apache-2.0" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
7 | SECTION = "graphics" | ||
8 | |||
9 | S = "${WORKDIR}/git" | ||
10 | DEST_DIR = "${S}/external" | ||
11 | SRC_URI = "git://github.com/KhronosGroup/SPIRV-Tools.git;name=spirv-tools \ | ||
12 | git://github.com/KhronosGroup/SPIRV-Headers.git;name=spirv-headers;destsuffix=${DEST_DIR}/spirv-headers \ | ||
13 | git://github.com/google/effcee.git;name=effcee;destsuffix=${DEST_DIR}/effcee \ | ||
14 | git://github.com/google/re2.git;name=re2;destsuffix=${DEST_DIR}/re2 \ | ||
15 | git://github.com/google/googletest.git;name=googletest;destsuffix=${DEST_DIR}/googletest \ | ||
16 | file://0001-Respect-CMAKE_INSTALL_LIBDIR-in-installed-CMake-file.patch \ | ||
17 | file://0001-Avoid-pessimizing-std-move-3124.patch \ | ||
18 | " | ||
19 | SRCREV_spirv-tools = "c413b982c316b14e784f50d941814fc737b55b4a" | ||
20 | SRCREV_spirv-headers = "af64a9e826bf5bb5fcd2434dd71be1e41e922563" | ||
21 | SRCREV_effcee = "cd25ec17e9382f99a895b9ef53ff3c277464d07d" | ||
22 | SRCREV_re2 = "5bd613749fd530b576b890283bfb6bc6ea6246cb" | ||
23 | SRCREV_googletest = "f2fb48c3b3d79a75a88a99fba6576b25d42ec528" | ||
24 | |||
25 | inherit cmake python3native | ||
26 | |||
27 | EXTRA_OECMAKE += "-DSPIRV_WERROR=OFF" | ||
28 | |||
29 | do_install_append() { | ||
30 | install -d ${D}/${includedir}/spirv | ||
31 | install -m 0644 ${DEST_DIR}/spirv-headers/include/spirv/1.2/* ${D}/${includedir}/spirv | ||
32 | } | ||
33 | |||
34 | FILES_SOLIBSDEV = "" | ||
35 | FILES_${PN} += "${libdir}/*.so" | ||