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

* Release notes: https://github.com/openvinotoolkit/openvino/releases/tag/2023.2.0 * Drop the patches which included header cstdint to fix build issues with gcc13 as these changes are already incorporated in the upstream code. * gflags and zlib are now used as bundled dependencies https://github.com/openvinotoolkit/openvino/pull/20762 * Refresh the patches Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 900eeeb2953095e651270c0f42ccd8b26fd7885c Mon Sep 17 00:00:00 2001
|
|
From: Anuj Mittal <anuj.mittal@intel.com>
|
|
Date: Wed, 29 Nov 2023 12:49:35 +0530
|
|
Subject: [PATCH 3/4] cmake: Fix overloaded-virtual error
|
|
|
|
* Remove -Werror for:
|
|
|git/src/plugins/intel_gpu/src/kernel_selector/jitter.h:129:28: error: 'virtual kernel_selector::JitDefinitions kernel_selector::JitConstant::GetDefinitions() const' was hidden [-Werror=overloaded-virtual=]
|
|
| 129 | virtual JitDefinitions GetDefinitions() const = 0;
|
|
| |
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
|
---
|
|
src/plugins/intel_gpu/CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/plugins/intel_gpu/CMakeLists.txt b/src/plugins/intel_gpu/CMakeLists.txt
|
|
index b0c66a435d6..a3037147cc2 100644
|
|
--- a/src/plugins/intel_gpu/CMakeLists.txt
|
|
+++ b/src/plugins/intel_gpu/CMakeLists.txt
|
|
@@ -38,7 +38,7 @@ add_subdirectory(thirdparty)
|
|
include(thirdparty/cmake/rapidjson.cmake)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
- ov_add_compiler_flags(-Werror)
|
|
+ #ov_add_compiler_flags(-Werror)
|
|
endif()
|
|
|
|
add_subdirectory(src/runtime)
|
|
--
|
|
2.34.1
|
|
|