vpl-gpu-rt: Set platforms to x86_64-linux only
The upstream README notes: > Operating System: > - Linux x86-64 fully supported > - Linux x86 only build But the SSE4 optimizations in the `ipp` library depend on x86_64 specific assembly. The only supported platform seems to be "x86_64-linux".
This commit is contained in:
@@ -29,10 +29,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/intel/vpl-gpu-rt";
|
||||
changelog = "https://github.com/intel/vpl-gpu-rt/releases/tag/${src.rev}";
|
||||
license = [ lib.licenses.mit ];
|
||||
platforms = lib.platforms.linux;
|
||||
# CMake adds x86 specific compiler flags in <source>/builder/FindGlobals.cmake
|
||||
# NOTE: https://github.com/oneapi-src/oneVPL-intel-gpu/issues/303
|
||||
broken = !stdenv.hostPlatform.isx86;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with lib.maintainers; [ evanrichter pjungkamp ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user