Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch stdenv to GCC 4.8.0. #445

Merged
merged 2 commits into from
Apr 10, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pkgs/development/libraries/gmp/4.3.2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ stdenv.mkDerivation rec {

configureFlags = if cxx then "--enable-cxx" else "--disable-cxx";

doCheck = true;
# The test t-lucnum_ui fails (on Linux/x86_64) when built with GCC 4.8.
# Newer versions of GMP don't have that issue anymore.
doCheck = false;

meta = {
description = "GMP, the GNU multiple precision arithmetic library";
Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1998,7 +1998,7 @@ let

gambit = callPackage ../development/compilers/gambit { };

gcc = gcc47;
gcc = gcc48;

gcc33 = wrapGCC (import ../development/compilers/gcc/3.3 {
inherit fetchurl stdenv noSysDirs;
Expand Down Expand Up @@ -2051,6 +2051,8 @@ let

gcc47 = gcc47_real;

gcc48 = gcc48_real;

gcc45_realCross = lib.addMetaAttrs { platforms = []; }
(makeOverridable (import ../development/compilers/gcc/4.5) {
inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib
Expand Down