mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: gcc-13: Remove unneeded patch for i586-gnu.
* gnu/packages/gcc.scm (gcc-13)[arguments]: When building for i586-gnu delete the inherited phase 'patch-hurd-libpthread as it exists upstream. Change-Id: I0837dcff325b15b6975b34dbd7268faaa223ecdd
This commit is contained in:
parent
86cab5c4bc
commit
ee8ff44519
1 changed files with 7 additions and 0 deletions
|
@ -808,6 +808,13 @@ (define-public gcc-13
|
|||
"gcc-5.0-libvtv-runpath.patch"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet gcc-canadian-cross-objdump-snippet)))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments gcc-11)
|
||||
((#:phases phases #~%standard-phases)
|
||||
(if (target-hurd?)
|
||||
#~(modify-phases #$phases
|
||||
(delete 'patch-hurd-libpthread))
|
||||
phases))))
|
||||
(properties
|
||||
`((compiler-cpu-architectures
|
||||
("aarch64" ,@%gcc-13-aarch64-micro-architectures)
|
||||
|
|
Loading…
Reference in a new issue