summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/embedded.scm23
1 files changed, 11 insertions, 12 deletions
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 870ad8ac179..f5fa70c75df 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2016, 2017, 2018, 2019, 2023, 2024, 2025 Ricardo Wurmus <rekado@elephly.net> 2;;; Copyright © 2016-2019, 2023-2026 Ricardo Wurmus <rekado@elephly.net>
3;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros@foradis.org> 3;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros@foradis.org>
4;;; Copyright © 2016 David Craven <david@craven.ch> 4;;; Copyright © 2016 David Craven <david@craven.ch>
5;;; Copyright © 2017, 2020 Efraim Flashner <efraim@flashner.co.il> 5;;; Copyright © 2017, 2020 Efraim Flashner <efraim@flashner.co.il>
@@ -1069,17 +1069,16 @@ with a layered architecture of JTAG interface and TAP support.")
1069 "0w0dff3s7wv2d9m78a4jhckiik58q38wx6wpbba5hzbs4yxz35ck")) 1069 "0w0dff3s7wv2d9m78a4jhckiik58q38wx6wpbba5hzbs4yxz35ck"))
1070 (patches '()))) 1070 (patches '())))
1071 (arguments 1071 (arguments
1072 (list 1072 (substitute-keyword-arguments (package-arguments xbinutils)
1073 ;; FIXME: For some reason there are many test failures. It's not 1073 ((#:configure-flags flags)
1074 ;; obvious how to fix the failures. 1074 #~(cons "--disable-werror" #$flags))
1075 #:tests? #f 1075 ;; FIXME: For some reason there are many test failures. It's not
1076 #:phases 1076 ;; obvious how to fix the failures.
1077 #~(modify-phases %standard-phases 1077 ((#:tests? tests? #false) #false)
1078 (add-after 'unpack 'chdir 1078 ((#:phases phases '%standard-phases)
1079 (lambda _ (chdir "binutils") #t)) 1079 `(modify-phases ,phases
1080 #$@(substitute-keyword-arguments (package-arguments xbinutils) 1080 (add-after 'unpack 'chdir
1081 ((#:configure-flags flags) 1081 (lambda _ (chdir "binutils")))))))
1082 #~(cons "--disable-werror" #$flags))))))
1083 (native-inputs 1082 (native-inputs
1084 `(("bison" ,bison) 1083 `(("bison" ,bison)
1085 ("flex" ,flex) 1084 ("flex" ,flex)