diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-06-06 17:19:18 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-06-16 21:35:24 +0200 |
commit | cdbcfc113bfc02e58bdf6ec42c545c479681602f (patch) | |
tree | 34abebc1683bb1d54bea3507fda63cbd4cf6ad00 /gnu/packages/base.scm | |
parent | 38ab778fbd676fe7f7a84220d0cf7f474573dc2b (diff) | |
download | gnu-guix-cdbcfc113bfc02e58bdf6ec42c545c479681602f.tar gnu-guix-cdbcfc113bfc02e58bdf6ec42c545c479681602f.tar.gz |
gnu: linux-libre: Fix build on AArch64.
* gnu/packages/patches/binutils-aarch64-symbol-relocation.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/base.scm (binutils/fixed): New public variable.
* gnu/packages/linux.scm (make-linux-libre)[native-inputs]: On aarch64, define
new ld-wrapper with the above binutils and use it.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 6d9f019857..fef6002b3c 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -480,6 +480,17 @@ included.") (license gpl3+) (home-page "https://www.gnu.org/software/binutils/"))) +(define-public binutils/fixed + ;; TODO: Incorporate this in binutils during the next rebuild cycle. + (hidden-package + (package + (inherit binutils) + (source (origin + (inherit (package-source binutils)) + (patches (append (origin-patches (package-source binutils)) + (search-patches + "binutils-aarch64-symbol-relocation.patch")))))))) + (define* (make-ld-wrapper name #:key (target (const #f)) binutils |