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: I0837dcff325b15b6975b34dbd7268faaa223ecddmaster
parent
86cab5c4bc
commit
ee8ff44519
|
@ -808,6 +808,13 @@ It also includes runtime support libraries for these languages.")
|
||||||
"gcc-5.0-libvtv-runpath.patch"))
|
"gcc-5.0-libvtv-runpath.patch"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet gcc-canadian-cross-objdump-snippet)))
|
(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
|
(properties
|
||||||
`((compiler-cpu-architectures
|
`((compiler-cpu-architectures
|
||||||
("aarch64" ,@%gcc-13-aarch64-micro-architectures)
|
("aarch64" ,@%gcc-13-aarch64-micro-architectures)
|
||||||
|
|
Reference in New Issue