mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: libaio: Fix cross-compilation.
* gnu/packages/linux.scm (libaio)[arguments]: When cross-compiling, set CC to the cross-gcc in #:make-flags.
This commit is contained in:
parent
a6046f24dd
commit
f847d9dcda
1 changed files with 8 additions and 2 deletions
|
@ -3838,8 +3838,14 @@ (define-public libaio
|
|||
"0ajhzbqjwsmz51gwccfyw6w9k4j4gmxcl2ph30sfn2gxv0d8gkv2"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:make-flags
|
||||
(list "CC=gcc" (string-append "prefix=" %output))
|
||||
`(#:make-flags
|
||||
(let ((target ,(%current-target-system)))
|
||||
(list (string-append "prefix=" %output)
|
||||
(string-append
|
||||
"CC=" (if target
|
||||
(string-append (assoc-ref %build-inputs "cross-gcc")
|
||||
"/bin/" target "-gcc")
|
||||
"gcc"))))
|
||||
#:test-target "partcheck" ; need root for a full 'check'
|
||||
#:phases
|
||||
(modify-phases %standard-phases (delete 'configure)))) ; no configure script
|
||||
|
|
Loading…
Reference in a new issue