3
0
Fork 0
forked from mirrors/nixpkgs

gfortran: update to 4.9.x

This commit is contained in:
Peter Simons 2015-07-22 19:41:00 +02:00
parent 90de4aecf2
commit 784025c747

View file

@ -3839,7 +3839,7 @@ let
isl = isl_0_14;
}));
gfortran = if !stdenv.isDarwin then gfortran48
gfortran = if !stdenv.isDarwin then gfortran49
else callPackage ../development/compilers/gcc/gfortran-darwin.nix {};
gfortran48 = wrapCC (gcc48.cc.override {
@ -3850,6 +3850,14 @@ let
profiledCompiler = false;
});
gfortran49 = wrapCC (gcc49.cc.override {
name = "gfortran";
langFortran = true;
langCC = false;
langC = false;
profiledCompiler = false;
});
gcj = gcj48;
gcj48 = wrapCC (gcc48.cc.override {