mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: x265: Enable assembly on for some arm build phases.
* gnu/packages/video.scm (x265)[arguments]: Enable assembly for armhf-linux. Only disable assembly for aarch64-linux when building the 10-bit or 12-bit libraries.
This commit is contained in:
parent
6f2bdd4e6b
commit
d473d8ebdb
1 changed files with 6 additions and 3 deletions
|
@ -1223,9 +1223,6 @@ (define-public x265
|
|||
#:configure-flags
|
||||
;; Ensure position independent code for everyone.
|
||||
(list "-DENABLE_PIC=TRUE"
|
||||
,@(if (target-arm?)
|
||||
'("-DENABLE_ASSEMBLY=OFF")
|
||||
'())
|
||||
(string-append "-DCMAKE_INSTALL_PREFIX="
|
||||
(assoc-ref %outputs "out")))
|
||||
#:phases
|
||||
|
@ -1246,6 +1243,9 @@ (define-public x265
|
|||
(with-directory-excursion "../build-12bit"
|
||||
(apply invoke
|
||||
"cmake" "../source"
|
||||
,@(if (target-aarch64?)
|
||||
'("-DENABLE_ASSEMBLY=OFF")
|
||||
'())
|
||||
"-DHIGH_BIT_DEPTH=ON"
|
||||
"-DEXPORT_C_API=OFF"
|
||||
"-DENABLE_CLI=OFF"
|
||||
|
@ -1263,6 +1263,9 @@ (define-public x265
|
|||
(with-directory-excursion "../build-10bit"
|
||||
(apply invoke
|
||||
"cmake" "../source"
|
||||
,@(if (target-aarch64?)
|
||||
'("-DENABLE_ASSEMBLY=OFF")
|
||||
'())
|
||||
"-DHIGH_BIT_DEPTH=ON"
|
||||
"-DEXPORT_C_API=OFF"
|
||||
"-DENABLE_CLI=OFF"
|
||||
|
|
Loading…
Reference in a new issue