mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: libstdc++: Support cross-compilation to powerpc64le-linux-gnu.
Previously the phase would fail when cross-compiling because the patch could not be found in ‘inputs’. * gnu/packages/gcc.scm (make-libstdc++): Add alternative ‘patch-powerpc’ phase for when (%current-target-system) is true. Change-Id: Ia503d761d34596d95cc9d33edd911cebcc2e0d9e
This commit is contained in:
parent
eaf54b598f
commit
b3d24c1d4f
1 changed files with 13 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2012-2024 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2014, 2015, 2016, 2017, 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015, 2023 Andreas Enge <andreas@enge.fr>
|
||||
|
@ -969,10 +969,18 @@ (define-public (make-libstdc++ gcc)
|
|||
(if (and (target-ppc64le?)
|
||||
(version>=? version "11")
|
||||
(not (version>=? version "12")))
|
||||
#~((add-after 'unpack 'patch-powerpc
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(invoke "patch" "--force" "-p1" "-i"
|
||||
(assoc-ref inputs "powerpc64le-patch")))))
|
||||
;; TODO: Drop the 'else' branch below on next rebuild
|
||||
;; cycle.
|
||||
(if (%current-target-system)
|
||||
#~((add-after 'unpack 'patch-powerpc ;correct
|
||||
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
||||
(invoke "patch" "--force" "-p1" "-i"
|
||||
(assoc-ref (or native-inputs inputs)
|
||||
"powerpc64le-patch")))))
|
||||
#~((add-after 'unpack 'patch-powerpc ;wrong
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(invoke "patch" "--force" "-p1" "-i"
|
||||
(assoc-ref inputs "powerpc64le-patch"))))))
|
||||
'()))
|
||||
;; Force rs6000 (i.e., powerpc) libdir to be /lib and not /lib64.
|
||||
(add-before 'chdir 'fix-rs6000-libdir
|
||||
|
|
Loading…
Reference in a new issue