all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#56884] [PATCH] Make x265 build on ppc64le
@ 2022-08-02 12:10 Marcel van der Boom
  2022-08-09  8:02 ` Marcel van der Boom
  2022-08-10  7:19 ` Marcel van der Boom
  0 siblings, 2 replies; 7+ messages in thread
From: Marcel van der Boom @ 2022-08-02 12:10 UTC (permalink / raw)
  To: 56884; +Cc: Marcel van der Boom

* gnu/packages/video.scm: disable ALTIVEC for target-ppc64le
---
 gnu/packages/video.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 04049fd9c8..09f8b7fd23 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1252,6 +1252,9 @@ (define-public x265
                  ,@(if (target-aarch64?)
                      '("-DENABLE_ASSEMBLY=OFF")
                      '())
+                 ,@(if (target-ppc64le?)
+                     '("-DENABLE_ALTIVEC=OFF")
+                     '())
                  "-DHIGH_BIT_DEPTH=ON"
                  "-DEXPORT_C_API=OFF"
                  "-DENABLE_CLI=OFF"
@@ -1272,6 +1275,9 @@ (define-public x265
                  ,@(if (target-aarch64?)
                      '("-DENABLE_ASSEMBLY=OFF")
                      '())
+                 ,@(if (target-ppc64le?)
+                     '("-DENABLE_ALTIVEC=OFF")
+                     '())
                  "-DHIGH_BIT_DEPTH=ON"
                  "-DEXPORT_C_API=OFF"
                  "-DENABLE_CLI=OFF"

base-commit: a1f7d98a9c7380be5815fd13b519bbab145757c2
-- 
2.37.1





^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-08-11 14:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-02 12:10 [bug#56884] [PATCH] Make x265 build on ppc64le Marcel van der Boom
2022-08-09  8:02 ` Marcel van der Boom
2022-08-10  2:16   ` Thiago Jung Bauermann via Guix-patches via
2022-08-10  7:19 ` Marcel van der Boom
2022-08-11  2:15   ` Thiago Jung Bauermann via Guix-patches via
2022-08-11  7:45     ` bug#56884: " Mathieu Othacehe
2022-08-11 14:50       ` [bug#56884] " Thiago Jung Bauermann via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.