gnu: libjpeg-turbo: Fix cross-compilation.
* gnu/packages/image.scm (libjpeg-turbo)[arguments]: In #:configure-flags, add "-DCMAKE_SYSTEM_PROCESSOR" for known architectures when cross-compiling.
This commit is contained in:
parent
28ba01aec6
commit
f3418f58dc
1 changed files with 16 additions and 1 deletions
|
@ -1507,7 +1507,22 @@ is hereby granted."))))
|
||||||
`(("nasm" ,nasm)))
|
`(("nasm" ,nasm)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("-DCMAKE_INSTALL_LIBDIR:PATH=lib"
|
`(#:configure-flags '("-DCMAKE_INSTALL_LIBDIR:PATH=lib"
|
||||||
"-DENABLE_STATIC=0")
|
"-DENABLE_STATIC=0"
|
||||||
|
;; The build system probes for the current CPU, but
|
||||||
|
;; that fails when cross-compiling.
|
||||||
|
,@(let ((target (%current-target-system)))
|
||||||
|
(if target
|
||||||
|
(cond
|
||||||
|
((string-prefix? "arm" target)
|
||||||
|
`("-DCMAKE_SYSTEM_PROCESSOR=arm"))
|
||||||
|
((string-prefix? "aarch64" target)
|
||||||
|
`("-DCMAKE_SYSTEM_PROCESSOR=aarch64"))
|
||||||
|
((string-prefix? "i686" target)
|
||||||
|
`("-DCMAKE_SYSTEM_PROCESSOR=x86"))
|
||||||
|
((string-prefix? "x86_64" target)
|
||||||
|
`("-DCMAKE_SYSTEM_PROCESSOR=x86_64"))
|
||||||
|
(else '()))
|
||||||
|
'())))
|
||||||
,@(if (%current-target-system)
|
,@(if (%current-target-system)
|
||||||
'()
|
'()
|
||||||
;; Use a special "bootstrap" CMake for the native build to work
|
;; Use a special "bootstrap" CMake for the native build to work
|
||||||
|
|
Reference in a new issue