mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: quickjs: Fix building on powerpc-linux.
* gnu/packages/javascript.scm (quickjs)[arguments]: When building for powerpc-linux add a make-flag to link with latomic. Change-Id: I8838c8b750f919a58fc3bfe73919de0c1e585243
This commit is contained in:
parent
f3460a82c8
commit
8ec53cabf2
1 changed files with 4 additions and 1 deletions
|
@ -846,7 +846,10 @@ (define-public quickjs
|
|||
(list #:make-flags
|
||||
#~(list "prefix="
|
||||
(string-append "DESTDIR=" #$output)
|
||||
#$@(if (target-riscv64?) '("LDFLAGS=-latomic") '()))
|
||||
#$@(if (or (target-riscv64?)
|
||||
(target-ppc32?))
|
||||
'("LDFLAGS=-latomic")
|
||||
'()))
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(replace 'check
|
||||
|
|
Loading…
Reference in a new issue