mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-12-23 15:24:52 +01:00
nonguix: Set default build-inputs priority higher than libc32 in binary-build-system.
* nonguix/build-system/binary.scm (lower): Swap native-inputs and libc32 in build-inputs. In particular, this fixes static linking with GCC.
This commit is contained in:
parent
c6e79750d7
commit
da95ca97d4
1 changed files with 2 additions and 2 deletions
|
@ -82,10 +82,10 @@
|
|||
;; Keep the standard inputs of 'gnu-build-system'.
|
||||
,@(standard-packages)))
|
||||
(build-inputs `(("patchelf" ,patchelf)
|
||||
,@native-inputs
|
||||
;; If current system is i686, the *32 packages will be the
|
||||
;; same as the non-32, but that's OK.
|
||||
("libc32" ,(to32 glibc))
|
||||
,@native-inputs))
|
||||
("libc32" ,(to32 glibc))))
|
||||
(outputs outputs)
|
||||
(build binary-build)
|
||||
(arguments (strip-keyword-arguments private-keywords arguments)))))
|
||||
|
|
Loading…
Reference in a new issue