gnu: x265: Disable assembly optimizations on i686-linux.
Fixes <https://bugs.gnu.org/41768>. * gnu/packages/video.scm (x265)[native-inputs]: Conditionally add NASM.master
parent
2e08394b3c
commit
d32a3b395c
|
@ -625,7 +625,11 @@ available.")
|
|||
(delete-file-recursively "source/compat/getopt")
|
||||
#t))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs `(("nasm" ,nasm)))
|
||||
(native-inputs
|
||||
;; XXX: ASM optimization fails on i686-linux, see <https://bugs.gnu.org/41768>.
|
||||
(if (string-prefix? "i686" (%current-system))
|
||||
'()
|
||||
`(("nasm" ,nasm))))
|
||||
(arguments
|
||||
`(#:tests? #f ; tests are skipped if cpu-optimized code isn't built
|
||||
#:configure-flags
|
||||
|
|
Reference in New Issue