diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-01-28 22:36:58 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-01-28 22:37:20 +0200 |
commit | a1f531273c1887eb9a5628e34294538a31cc1243 (patch) | |
tree | f18a3e2307310381b98804aee48e98b6a1dc20e4 /gnu | |
parent | b253e7b9acc3260390e693900df1c2081e8bc4f5 (diff) | |
download | guix-a1f531273c1887eb9a5628e34294538a31cc1243.tar guix-a1f531273c1887eb9a5628e34294538a31cc1243.tar.gz |
gnu: u-boot: Use newer GCC even during native compiles.
* gnu/packages/bootloaders.scm (u-boot)[native-inputs]: Add gcc-7 even
when not cross-compiling.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bootloaders.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index f7aa21fa61..f2e45edb9d 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -372,7 +372,7 @@ also initializes the boards (RAM etc).") `(,@(if (not same-arch?) `(("cross-gcc" ,(cross-gcc triplet #:xgcc gcc-7)) ("cross-binutils" ,(cross-binutils triplet))) - '()) + `(("gcc-7" ,gcc-7))) ,@(package-native-inputs u-boot))) (arguments `(#:modules ((ice-9 ftw) (guix build utils) (guix build gnu-build-system)) |