mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05: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 @@ (define-module (gnu packages embedded)
|
||||||
#:use-module (gnu packages libusb)
|
#:use-module (gnu packages libusb)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pkg-config)
|
#: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
|
;; 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
|
;; does not produce working binaries. Instead we take the very same SVN
|
||||||
|
@ -63,7 +64,13 @@ (define-public gcc-arm-none-eabi-4.9
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"113r98kygy8rrjfv2pd3z6zlfzbj543pq7xyq8bgh72c608mmsbr"))
|
"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
|
(native-inputs
|
||||||
`(("flex" ,flex)
|
`(("flex" ,flex)
|
||||||
,@(package-native-inputs xgcc)))
|
,@(package-native-inputs xgcc)))
|
||||||
|
|
Loading…
Reference in a new issue