Skip to content

Commit

Permalink
Use GCC 7 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Jul 25, 2017
1 parent ecaef62 commit ca8aa5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkgs/stdenv/linux/default.nix
Expand Up @@ -214,9 +214,9 @@ in
gmp = super.gmp.override { stdenv = self.makeStaticLibraries self.stdenv; };
mpfr = super.mpfr.override { stdenv = self.makeStaticLibraries self.stdenv; };
libmpc = super.libmpc.override { stdenv = self.makeStaticLibraries self.stdenv; };
isl_0_14 = super.isl_0_14.override { stdenv = self.makeStaticLibraries self.stdenv; };
isl_0_17 = super.isl_0_17.override { stdenv = self.makeStaticLibraries self.stdenv; };
gcc-unwrapped = super.gcc-unwrapped.override {
isl = isl_0_14;
isl = isl_0_17;
};
};
extraBuildInputs = [ prevStage.patchelf prevStage.paxctl ] ++
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -5227,7 +5227,7 @@ with pkgs;
gambit = callPackage ../development/compilers/gambit { };
gerbil = callPackage ../development/compilers/gerbil { };

gcc = gcc6;
gcc = gcc7;
gcc-unwrapped = gcc.cc;

wrapCCMulti = cc:
Expand Down

0 comments on commit ca8aa5d

Please sign in to comment.