[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/09: gnu: svt-hevc: Mark as supported on x86_64-linux only.
From: |
guix-commits |
Subject: |
04/09: gnu: svt-hevc: Mark as supported on x86_64-linux only. |
Date: |
Sun, 9 Oct 2022 16:33:45 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 27a3a5d193c9c2660c51aa389f642fd08d956dd1
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Oct 9 21:42:09 2022 +0200
gnu: svt-hevc: Mark as supported on x86_64-linux only.
This package fails to build on i686-linux: it makes use of SSE2 and
related intrinsics not supported on i686.
* gnu/packages/video.scm (svt-hevc)[supported-systems]: Remove
"i686-linux".
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Adjust condition
accordingly.
---
gnu/packages/gstreamer.scm | 6 +++---
gnu/packages/video.scm | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 5017da1091..6e2902d76a 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -889,9 +889,9 @@ model to base your own plug-in on, here it is.")
("soundtouch" ,soundtouch)
("spandsp" ,spandsp)
("srt" ,srt)
- ,@(if (target-x86?)
- `(("svthevcenc" ,svt-hevc))
- '())
+ ,@(if (target-x86-64?)
+ `(("svthevcenc" ,svt-hevc))
+ '())
("tinyalsa" ,tinyalsa)
("transcode" ,transcode)
("usrsctp" ,usrsctp)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index e6da6ce04f..876f0c66cb 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -335,7 +335,7 @@ the SVT-HEVC encoder, it is possible to spread video
encoding processing across
multiple Intel's Xeon processors to achieve a real advantage of processing
efficiency.")
(home-page "https://01.org/svt")
- (supported-systems '("x86_64-linux" "i686-linux"))
+ (supported-systems '("x86_64-linux"))
(license (license:non-copyleft "file:///LICENSE.md"))))
(define-public mediasdk
- branch master updated (b310afde26 -> e827d45db9), guix-commits, 2022/10/09
- 03/09: gnu: directfb: Remove input labels., guix-commits, 2022/10/09
- 06/09: gnu: Add genie., guix-commits, 2022/10/09
- 09/09: gnu: Add go-webring., guix-commits, 2022/10/09
- 01/09: gnu: directfb: Use 'librsvg-for-system'., guix-commits, 2022/10/09
- 02/09: gnu: gst-plugins-bad: Use 'librsvg-for-system'., guix-commits, 2022/10/09
- 04/09: gnu: svt-hevc: Mark as supported on x86_64-linux only.,
guix-commits <=
- 05/09: gnu: blesh: Substitute with readlink directly., guix-commits, 2022/10/09
- 07/09: gnu: Add perl-file-fcntllock., guix-commits, 2022/10/09
- 08/09: gnu: public-inbox: Update to 1.9.0., guix-commits, 2022/10/09