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

The instrinsics Python scripts now need mako module as well. Use the native Python to ensure builds are not dependent on what is installed on the host. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
36 lines
1.5 KiB
Diff
36 lines
1.5 KiB
Diff
From 3d71670f8ad5b54d434c2f5f71713bb1d5433ae4 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/cmake/Functions.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/IGC/VectorCompiler/lib/BiF/cmake/Functions.cmake b/IGC/VectorCompiler/lib/BiF/cmake/Functions.cmake
|
|
index d20d7f887..882e09fea 100644
|
|
--- a/IGC/VectorCompiler/lib/BiF/cmake/Functions.cmake
|
|
+++ b/IGC/VectorCompiler/lib/BiF/cmake/Functions.cmake
|
|
@@ -109,7 +109,7 @@ function(vc_build_bif TARGET RES_FILE CMCL_SRC_PATH BIF_NAME PTR_BIT_SIZE)
|
|
COMMENT "vc_build_bif: Translating CMCL builtins: ${BIF_CLANG_BC_NAME_FINAL} -> ${BIF_OPT_BC_NAME}"
|
|
COMMAND CMCLTranslatorTool -o ${BIF_CMCL_BC_NAME} ${BIF_CLANG_BC_NAME_FINAL}
|
|
COMMAND ${LLVM_OPT_EXE} ${IGC_LLVM_DEPENDENT_OPT_FLAGS} --O2 -o ${BIF_OPT_BC_NAME} ${BIF_CMCL_BC_NAME}
|
|
- DEPENDS CMCLTranslatorTool ${LLVM_OPT_EXE} ${BIF_CLANG_BC_PATH_FINAL}
|
|
+ DEPENDS CMCLTranslatorTool ${BIF_CLANG_BC_PATH_FINAL}
|
|
BYPRODUCTS ${BIF_OPT_BC_PATH}
|
|
SOURCES ${CMCL_SRC_PATH})
|
|
set(${RES_FILE} ${BIF_OPT_BC_NAME} PARENT_SCOPE)
|
|
--
|
|
2.43.2
|
|
|