3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: linux-libre: Work around GCC 4.8.3 ICE.

* gnu/packages/linux.scm (linux-libre)[inputs]: New field.
This commit is contained in:
Ludovic Courtès 2014-09-23 10:12:17 +02:00
parent 4b164c4532
commit 3b0273885b

View file

@ -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)