From ee8ff44519650706a563da96cf22b0f64dd22c34 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 30 May 2024 12:37:33 +0300 Subject: 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 --- gnu/packages/gcc.scm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 0060ff7518..9dc6e10b42 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -808,6 +808,13 @@ It also includes runtime support libraries for these languages.") "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) -- cgit v1.2.3