Package Details: openvino-intel-gpu-plugin 2025.2.0-1

Git Clone URL: https://aur.archlinux.org/openvino.git (read-only, click to copy)
Package Base: openvino
Description: Intel GPU plugin for OpenVINO
Upstream URL: https://docs.openvino.ai/
Licenses: Apache-2.0, LicenseRef-custom
Submitter: dbermond
Maintainer: dbermond
Last Packager: dbermond
Votes: 15
Popularity: 0.25
First Submitted: 2020-12-23 22:29 (UTC)
Last Updated: 2025-06-18 17:44 (UTC)

Required by (1)

Sources (27)

Latest Comments

1 2 3 4 5 6 .. 10 Next › Last »

zhitch73 commented on 2025-08-28 14:35 (UTC)

@Taithrah I manually edited that file but when i run makepkg -si it reverts to the original....how to edit the file without it automatically reverting?

Taithrah commented on 2025-08-28 12:45 (UTC) (edited on 2025-08-28 12:46 (UTC) by Taithrah)

@zhitch73 They are most likely referencing openvino/src/openvino/cmake/developer_package/version.cmake

zhitch73 commented on 2025-08-28 00:53 (UTC)

@wilflinlinlinlin I have the same issue @ILTORU I don't see said script in the pkgbuild

ILTORU commented on 2025-08-26 10:27 (UTC)

@wilflinlinlinlin

In the PKGBUILD, I added a small script in the prepare function to fix an issue in the version.cmake file.

The script uses sed to find a specific line in the file:

if(DEFINED ${var} AND NOT ${var} EQUAL ${var}_HPP)

and replaces it with:

if(DEFINED ${var} AND NOT ${${var}} EQUAL ${${var}_HPP})

This change ensures that the variable is correctly expanded in the conditional expression, fixing the issue during the build process.

The script runs automatically when you prepare the package, so no further manual changes are needed.

wilflinlinlinlin commented on 2025-08-25 04:45 (UTC)

I don't know if anybody have got this:

CMake Error at cmake/developer_package/version.cmake:103 (message): OpenVINO_VERSION_MAJOR parsed from CI_BUILD_NUMBER () and from openvino/core/version.hpp (2025) are different Call Stack (most recent call first): cmake/developer_package/version.cmake:113 (ov_compare_version_with_headers) cmake/developer_package/OpenVINODeveloperScriptsConfig.cmake:32 (ov_parse_ci_build_number) cmake/developer_package/OpenVINODeveloperScriptsConfig.cmake:48 (ov_set_ci_build_number) CMakeLists.txt:58 (find_package)

dbermond commented on 2025-07-31 20:03 (UTC)

@alexdw glad to know it worked.

alexdw commented on 2025-07-31 19:11 (UTC)

@dbermond Thanks! It turned out I had no swap space configured, so I set up a 16GB swap file (along with my 16GB physical RAM) and it compiled successfully first time.

dbermond commented on 2025-07-30 01:45 (UTC)

@alexdw I cannot reproduce your issue. Make sure that you are not building in a tempfs, make sure that you have enough disk space and try to increase swap space.

alexdw commented on 2025-07-29 22:53 (UTC) (edited on 2025-07-29 22:54 (UTC) by alexdw)

+1 for a precompiled version (-bin), though appreciate that it sounds like this would have its own challenges/downsides. This package takes longer than all my other AUR packages combined to build, and on the latest version I keep on hitting the following error (after a few hours of building):


[ 88%] Linking CXX shared module /home/alexdw/.cache/yay/openvino/src/openvino/bin/intel64/Release/libopenvino_intel_gpu_plugin.so
collect2: fatal error: ld terminated with signal 9 [Killed]
compilation terminated.
make[2]: *** [src/plugins/intel_gpu/CMakeFiles/openvino_intel_gpu_plugin.dir/build.make:2547: /home/alexdw/.cache/yay/openvino/src/openvino/bin/intel64/Release/libopenvino_intel_gpu_plugin.so] Error 1
make[2]: *** Deleting file '/home/alexdw/.cache/yay/openvino/src/openvino/bin/intel64/Release/libopenvino_intel_gpu_plugin.so'
make[1]: *** [CMakeFiles/Makefile2:4923: src/plugins/intel_gpu/CMakeFiles/openvino_intel_gpu_plugin.dir/all] Error 2
make: *** [Makefile:156: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: openvino-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
openvino - exit status 4

A quick search suggests this can be caused by the system running out of memory - it has 16GB so while not massive I wouldn't have thought that to be insufficient.

dbermond commented on 2025-06-18 17:40 (UTC) (edited on 2025-06-18 17:47 (UTC) by dbermond)

@jude7733 correction: in fact, upstream provides precompiled binaries, but without plugins. Not sure if I'm interested in creating a -bin package for it, since it will need special treatment due to custom install locations. Also, the python bindings will break from time to time when the python version gets an update.