diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2022-05-19 22:04:22 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2022-06-10 16:25:57 +0800 |
commit | 7cd06a4a7151341fca82a08b5f820fae6504d409 (patch) | |
tree | 4f53e9c27e69d2b88f6f3273465fc6d627d41597 /dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-llvm-link-external.patch | |
parent | c1674307a4ef3c32b1b67542f84751a00db357b4 (diff) | |
download | meta-intel-7cd06a4a7151341fca82a08b5f820fae6504d409.tar.gz |
intel-graphics-compiler: upgrade 1.0.10395 -> 1.0.11279
* Remove upstreamed patches and refresh others.
* Include the LICENSE.md file and remove the cpp file which just points to
MIT license.
* Update the license to MIT and Apache-2.0
* Install vcb tool from -native recipe.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-llvm-link-external.patch')
-rw-r--r-- | dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-llvm-link-external.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-llvm-link-external.patch b/dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-llvm-link-external.patch deleted file mode 100644 index e0800f6f..00000000 --- a/dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-llvm-link-external.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | From 0088e843be66ed5f11388a9ef57f364a2a236584 Mon Sep 17 00:00:00 2001 | ||
2 | From: Dongwon Kim <dongwon.kim@intel.com> | ||
3 | Date: Tue, 1 Mar 2022 17:05:01 -0800 | ||
4 | Subject: [PATCH] llvm-link external | ||
5 | |||
6 | Signed-off-by: Dongwon Kim <dongwon.kim@intel.com> | ||
7 | --- | ||
8 | IGC/cmake/igc_llvm.cmake | 5 ++++- | ||
9 | 1 file changed, 4 insertions(+), 1 deletion(-) | ||
10 | |||
11 | diff --git a/IGC/cmake/igc_llvm.cmake b/IGC/cmake/igc_llvm.cmake | ||
12 | index 80c83d4e0..85f7dda3d 100644 | ||
13 | --- a/IGC/cmake/igc_llvm.cmake | ||
14 | +++ b/IGC/cmake/igc_llvm.cmake | ||
15 | @@ -29,7 +29,10 @@ if(LLVM_TABLEGEN_EXE-NOTFOUND) | ||
16 | message(FATAL_ERROR "[VC] llvm-tblgen is not found") | ||
17 | endif() | ||
18 | |||
19 | -set(LLVM_LINK_EXE "llvm-link" CACHE STRING "") | ||
20 | +find_program(LLVM_LINK_EXE "llvm-link") | ||
21 | +if(LLVM_LINK_EXE-NOTFOUND) | ||
22 | + message(FATAL_ERROR "[VC] llvm-link is not found") | ||
23 | +endif() | ||
24 | |||
25 | include(AddLLVM) | ||
26 | include(TableGen) | ||
27 | -- | ||
28 | 2.20.1 | ||
29 | |||