mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

* 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>
(cherry picked from commit 7cd06a4a71
)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 16fb6c022380bbb3c48f21372fcb1da7f30d3903 Mon Sep 17 00:00:00 2001
|
|
From: Anuj Mittal <anuj.mittal@intel.com>
|
|
Date: Tue, 12 Oct 2021 23:46:42 +0800
|
|
Subject: [PATCH] BiF/CMakeLists.txt: remove opt from DEPENDS
|
|
|
|
Otherwise it starts failing with:
|
|
|
|
| ninja: error: 'IGC/VectorCompiler/lib/BiF/opt', needed by 'IGC/VectorCompiler/lib/BiF/VCBiFPrintfOCL32.opt.bc', missing and no known rule to make it
|
|
|
|
We don't need to explicitly make sure opt is built when
|
|
using prebuilt binaries.
|
|
|
|
Upstream-Status: Inappropriate
|
|
|
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
|
---
|
|
IGC/VectorCompiler/lib/BiF/CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/IGC/VectorCompiler/lib/BiF/CMakeLists.txt b/IGC/VectorCompiler/lib/BiF/CMakeLists.txt
|
|
index be8e5557e..07ab40382 100644
|
|
--- a/IGC/VectorCompiler/lib/BiF/CMakeLists.txt
|
|
+++ b/IGC/VectorCompiler/lib/BiF/CMakeLists.txt
|
|
@@ -112,7 +112,7 @@ function(vc_build_bif RES_FILE CMCL_SRC_PATH BIF_NAME PTR_BIT_SIZE)
|
|
add_custom_command(OUTPUT ${BIF_OPT_BC_PATH}
|
|
COMMAND ${LLVM_OPT_EXE} --O2 -o ${BIF_OPT_BC_NAME} ${BIF_CMCL_BC_NAME}
|
|
COMMENT "vc_build_bif: running opt with O2: ${BIF_CMCL_BC_NAME} -> ${BIF_OPT_BC_NAME}"
|
|
- DEPENDS opt ${BIF_CMCL_BC_PATH})
|
|
+ DEPENDS ${BIF_CMCL_BC_PATH})
|
|
set(${RES_FILE} ${BIF_OPT_BC_NAME} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
--
|
|
2.35.3
|
|
|