diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-11-15 00:10:10 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-11-16 00:48:31 +0100 |
commit | 062134985802d85066418f6ee2f327122166a567 (patch) | |
tree | 9469947d60f7c67ee063b816137052d874fa2178 /build-aux/download.scm | |
parent | 7db9608d52ab431165ab150a0a0707c686990c1c (diff) | |
download | guix-062134985802d85066418f6ee2f327122166a567.tar guix-062134985802d85066418f6ee2f327122166a567.tar.gz |
gnu: Switch to GCC 4.8 as the default compiler.
* build-aux/download.scm (file-name->uri): Update URL to /20131110.
* gnu-system.am (nodist_bootstrap_x86_64_linux_DATA,
nodist_bootstrap_i686_linux_DATA): Change base name to
'guile-2.0.9.tar.xz'.
(gnu/packages/bootstrap/x86_64-linux/guile-2.0.9.tar.xz,
gnu/packages/bootstrap/i686-linux/guile-2.0.9.tar.xz): New targets.
(gnu/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz,
gnu/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz): Remove.
(gnu/packages/bootstrap/mips64el-linux/guile-2.0.9.tar.xz): Update
hash.
* gnu/packages/base.scm (gcc-boot0): Base upon GCC-4.8. Enable C++, and
add a few --disable flags. Remove MPFR workaround.
(cross-gcc-wrapper): Base upon GCC-4.8. Wrap both 'gcc' and 'g++'.
(libstdc++): New variable.
(gcc-final): Add it as an input; pass corresponding -I and -L flags.
* gnu/packages/bootstrap.scm (%bootstrap-guile): Always use
"guile-2.0.9.tar.xz.
(%bootstrap-coreutils&co): Update hashes.
(%bootstrap-binutils): Update URL and hashes.
(%bootstrap-glibc): Likewise.
(%bootstrap-gcc): Likewise.
* gnu/packages/gcc.scm (gcc-4.7): Add LDFLAGS.
Add --disable-libstdcxx-pch.
Modify the GNU_USER*_SPEC macros from gnu-user*.h instead of the raw
_SPEC macros.
Diffstat (limited to 'build-aux/download.scm')
-rw-r--r-- | build-aux/download.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/build-aux/download.scm b/build-aux/download.scm index 68ad7773f5..50123f59d2 100644 --- a/build-aux/download.scm +++ b/build-aux/download.scm @@ -45,12 +45,7 @@ (match (string-tokenize file (char-set-complement (char-set #\/))) ((_ ... system basename) (string->uri (string-append %url-base "/" system - (match system - ("mips64el-linux" - "/20131017/") - (_ - "/20130105/")) - basename))))) + "/20131110/" basename))))) (match (command-line) ((_ file expected-hash) |