[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: Allow gcc 4.9 to be built using 4.8
From: |
John Darrington |
Subject: |
03/03: gnu: Allow gcc 4.9 to be built using 4.8 |
Date: |
Wed, 26 Nov 2014 16:19:14 +0000 |
jmd pushed a commit to branch wip-arm
in repository guix.
commit 8d43d7d0fe8024dc18aa8f138f73d608e7e429ad
Author: John Darrington <address@hidden>
Date: Sun Nov 23 16:08:54 2014 +0100
gnu: Allow gcc 4.9 to be built using 4.8
* gnu/packages/gcc.scm (gcc-4.9): Add arguments list.
---
gnu/packages/gcc.scm | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index b9fb37a..e1168c6 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -310,7 +310,8 @@ Go. It also includes runtime support libraries for these
languages.")
version "/gcc-" version ".tar.bz2"))
(sha256
(base32
- "1pbjp4blk2ycaa6r3jmw4ky5f1s9ji3klbqgv8zs2sl5jn1cj810"))))))
+ "1pbjp4blk2ycaa6r3jmw4ky5f1s9ji3klbqgv8zs2sl5jn1cj810"))))
+ (arguments '(#:configure-flags '("--disable-werror")))))
(define* (custom-gcc gcc name languages #:key (separate-lib-output? #t))
"Return a custom version of GCC that supports LANGUAGES."