diff options
author | Marius Bakke <marius@gnu.org> | 2021-07-19 20:44:27 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-07-23 17:26:45 +0200 |
commit | 2fa26446a186664c6364de0536380e43113dc95f (patch) | |
tree | 8c1df47980c29544c7cb1b221c115dc150a8c22d /gnu/packages/base.scm | |
parent | e045fd7ce22fb0c098db8317e4e06b68c543ba60 (diff) | |
download | guix-2fa26446a186664c6364de0536380e43113dc95f.tar.gz |
gnu: binutils: Update to 2.37.
* gnu/packages/patches/binutils-loongson-workaround.patch: Adjust for upstream changes. * gnu/packages/patches/binutils-libiberty-endianness-bug.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/base.scm (binutils): Update to 2.37. [source](patches): Remove obsolete patch.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index f5dd5f6b77..f221e9484f 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -508,16 +508,15 @@ change. GNU make offers many powerful extensions over the standard utility.") (define-public binutils (package (name "binutils") - (version "2.36.1") + (version "2.37") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/binutils/binutils-" version ".tar.bz2")) (sha256 (base32 - "18ypqr5y48vxqg9mkz1c47798jp1xb1d4vfpmfq8vkihkvkx4jsv")) - (patches (search-patches "binutils-libiberty-endianness-bug.patch" - "binutils-loongson-workaround.patch")))) + "1m3b2rdfv1dmdpd0bzg1hy7i8a2qng53szc6livyi3nh6101mz37")) + (patches (search-patches "binutils-loongson-workaround.patch")))) (build-system gnu-build-system) ;; TODO: Add dependency on zlib + those for Gold. |