diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-09-23 10:12:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-09-23 10:12:17 +0200 |
commit | 3b0273885b9b6cab82ad320b27746632b3acc748 (patch) | |
tree | d58d84f4d0abc88f1a5d44ee26191609375b6578 /gnu | |
parent | 4b164c45325f93559aac4fba08627836a525b2fd (diff) | |
download | guix-3b0273885b9b6cab82ad320b27746632b3acc748.tar.gz |
gnu: linux-libre: Work around GCC 4.8.3 ICE.
* gnu/packages/linux.scm (linux-libre)[inputs]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 561275c05f..3e19c35f03 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -24,6 +24,7 @@ #:hide (zlib)) #:use-module (gnu packages) #:use-module ((gnu packages compression) #:prefix guix:) + #:use-module (gnu packages gcc) #:use-module (gnu packages flex) #:use-module (gnu packages bison) #:use-module (gnu packages gperf) @@ -275,6 +276,11 @@ for SYSTEM, or #f if there is no configuration for SYSTEM." (if conf `(("kconfig" ,conf)) '())))) + + ;; XXX: Work around an ICE with our patched GCC 4.8.3 while compiling + ;; 'drivers/staging/vt6656/michael.o': <http://hydra.gnu.org/build/96389/>. + (inputs `(("gcc" ,gcc-4.9))) + (arguments `(#:modules ((guix build gnu-build-system) (guix build utils) |