mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05: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:
parent
4b164c4532
commit
3b0273885b
1 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,7 @@ (define-module (gnu packages linux)
|
||||||
#:hide (zlib))
|
#:hide (zlib))
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module ((gnu packages compression) #:prefix guix:)
|
#:use-module ((gnu packages compression) #:prefix guix:)
|
||||||
|
#:use-module (gnu packages gcc)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages gperf)
|
#:use-module (gnu packages gperf)
|
||||||
|
@ -275,6 +276,11 @@ (define-public linux-libre
|
||||||
(if conf
|
(if conf
|
||||||
`(("kconfig" ,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
|
(arguments
|
||||||
`(#:modules ((guix build gnu-build-system)
|
`(#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
|
|
Loading…
Reference in a new issue