diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-04-10 05:20:36 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-04-10 05:38:42 +0300 |
commit | 5c7815f205e9164d4b82378de91bee7a65bcfbcb (patch) | |
tree | 0e12f6039bb53ee34251280dee4a541788cf426c | |
parent | 96e98d51a7057b443a1c1b32046f8be6a1987a2f (diff) |
gnu: gcl: Build with gcc@4.9.
* gnu/packages/lisp.scm (gcl)[native-inputs]: Add gcc@4.9.
-rw-r--r-- | gnu/packages/lisp.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 2bbe398079..2e840a087f 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net> ;;; Copyright © 2016 Andy Patterson <ajpatter@uwaterloo.ca> ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -113,7 +114,8 @@ (alist-delete 'strip %standard-phases)))) (native-inputs - `(("m4" ,m4) + `(("gcc" ,gcc-4.9) + ("m4" ,m4) ("readline" ,readline) ("texinfo" ,texinfo) ("texlive" ,texlive))) |