mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: gcc-arm-none-eabi-4.9: Remove non-applicable patch.
* gnu/packages/embedded.scm (gcc-arm-none-eabi-4.9)[patches]: Remove "gcc-arm-bug-71399.patch" from XGCC's patches.
This commit is contained in:
parent
b66d6d52cc
commit
7894ea6122
1 changed files with 9 additions and 2 deletions
|
@ -38,7 +38,8 @@
|
|||
#:use-module (gnu packages libusb)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages texinfo))
|
||||
#:use-module (gnu packages texinfo)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
;; We must not use the released GCC sources here, because the cross-compiler
|
||||
;; does not produce working binaries. Instead we take the very same SVN
|
||||
|
@ -63,7 +64,13 @@
|
|||
(sha256
|
||||
(base32
|
||||
"113r98kygy8rrjfv2pd3z6zlfzbj543pq7xyq8bgh72c608mmsbr"))
|
||||
(patches (origin-patches (package-source xgcc)))))
|
||||
|
||||
;; Remove the one patch that doesn't apply to this 4.9 snapshot (the
|
||||
;; patch is for 4.9.4 and later but this svn snapshot is older).
|
||||
(patches (remove (lambda (patch)
|
||||
(string=? (basename patch)
|
||||
"gcc-arm-bug-71399.patch"))
|
||||
(origin-patches (package-source xgcc))))))
|
||||
(native-inputs
|
||||
`(("flex" ,flex)
|
||||
,@(package-native-inputs xgcc)))
|
||||
|
|
Loading…
Reference in a new issue