about summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc-4.4
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-01-26 16:25:30 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-01-26 16:25:30 +0000
commit07cdd0fbb182915c4a86fa46ede479c4bb55e44b (patch)
tree8f1a54d7cf8d8977a732f0220966cf984e837f0d /pkgs/development/compilers/gcc-4.4
parente8601a4227519ba979e0785855c28b6adfce779e (diff)
downloadnixlib-07cdd0fbb182915c4a86fa46ede479c4bb55e44b.tar
nixlib-07cdd0fbb182915c4a86fa46ede479c4bb55e44b.tar.gz
nixlib-07cdd0fbb182915c4a86fa46ede479c4bb55e44b.tar.bz2
nixlib-07cdd0fbb182915c4a86fa46ede479c4bb55e44b.tar.lz
nixlib-07cdd0fbb182915c4a86fa46ede479c4bb55e44b.tar.xz
nixlib-07cdd0fbb182915c4a86fa46ede479c4bb55e44b.tar.zst
nixlib-07cdd0fbb182915c4a86fa46ede479c4bb55e44b.zip
Updating gcc to 4.4.3
svn path=/nixpkgs/branches/stdenv-updates/; revision=19679
Diffstat (limited to 'pkgs/development/compilers/gcc-4.4')
-rw-r--r--pkgs/development/compilers/gcc-4.4/default.nix4
-rw-r--r--pkgs/development/compilers/gcc-4.4/sources.nix12
2 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/compilers/gcc-4.4/default.nix b/pkgs/development/compilers/gcc-4.4/default.nix
index 741c440f92f9..36b4440cb276 100644
--- a/pkgs/development/compilers/gcc-4.4/default.nix
+++ b/pkgs/development/compilers/gcc-4.4/default.nix
@@ -33,7 +33,7 @@ assert langVhdl     -> gnat != null;
 
 with stdenv.lib;
 
-let version = "4.4.2";
+let version = "4.4.3";
     javaEcj = fetchurl {
       # The `$(top_srcdir)/ecj.jar' file is automatically picked up at
       # `configure' time.
@@ -100,7 +100,7 @@ stdenv.mkDerivation ({
      # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42279
      ./target-cpp.patch
 
-     # (fixed in gcc 4.4.3) bad mixture of build/target flags
+     # Bad mixture of build/target flags
      ./libstdc++-target.patch
      ]
     ++ optional noSysDirs ./no-sys-dirs.patch
diff --git a/pkgs/development/compilers/gcc-4.4/sources.nix b/pkgs/development/compilers/gcc-4.4/sources.nix
index 6da3d48e941c..351240e73ca3 100644
--- a/pkgs/development/compilers/gcc-4.4/sources.nix
+++ b/pkgs/development/compilers/gcc-4.4/sources.nix
@@ -2,25 +2,25 @@
    For GCC 4.4.2.  */
 { fetchurl, optional, version, langC, langCC, langFortran, langJava, langAda }:
 
-assert version == "4.4.2";
+assert version == "4.4.3";
 optional /* langC */ true (fetchurl {
   url = "mirror://gcc/releases/gcc-${version}/gcc-core-${version}.tar.bz2";
-  sha256 = "03cgv3b9bqhap4bks5wfg7nyj64l5c3qyn1igpqc6gk60bxm9wym";
+  sha256 = "0ml360nwkf95w0ykn19zlyxmdvvzpmrbxj2vfrn0k8i2pvk13wwj";
 }) ++
 optional langCC (fetchurl {
   url = "mirror://gcc/releases/gcc-${version}/gcc-g++-${version}.tar.bz2";
-  sha256 = "0al23gnx4v50j1y6xb23by34m2qhavm2xxn3f1v8kis7ajlbm1j1";
+  sha256 = "1s5zy8pfn4rgfm2l1dpfzrrdhi2l5zhphqk0h3gsbn1pdw751kkv";
 }) ++
 optional langFortran (fetchurl {
   url = "mirror://gcc/releases/gcc-${version}/gcc-fortran-${version}.tar.bz2";
-  sha256 = "0zk3j5r1cc5ahm0njxba1xfvv2h39d17aqakgg354pig4hpjkidc";
+  sha256 = "0iivw5kgwxdlqamwgaw5zhw48jajsmg09fgynyxkrxsa702s74sw";
 }) ++
 optional langJava (fetchurl {
   url = "mirror://gcc/releases/gcc-${version}/gcc-java-${version}.tar.bz2";
-  sha256 = "0ydk0qyhi1fdyz2xvj6m6l7cav4wg3962a1jxpf2j3nppm0p1dvp";
+  sha256 = "13r0yxz6sif3i6sxh7b3fa5m1ygynvsg1bf6ssq6njp1fzp9a2kq";
 }) ++
 optional langAda (fetchurl {
   url = "mirror://gcc/releases/gcc-${version}/gcc-ada-${version}.tar.bz2";
-  sha256 = "1isz90b772j7ar5d4265fxzwiwgljssi0kpmrkybsj545615s0wi";
+  sha256 = "146jfkwgg7gdgfqnrm04133amk8k9vr51wc01rwp2bcjai9c3kk7";
 }) ++
 []