about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-11-21 23:22:06 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-11-21 23:22:06 +0100
commitfed248c78e3db25edfda4ae76c49910a9170ea46 (patch)
tree0a85c36e6856b2f925d2ef0d2d2fc858e305becb /pkgs/development/compilers
parentbd67a1a16ff7983923e8d5e47ab866d45b7122d6 (diff)
downloadnixlib-fed248c78e3db25edfda4ae76c49910a9170ea46.tar
nixlib-fed248c78e3db25edfda4ae76c49910a9170ea46.tar.gz
nixlib-fed248c78e3db25edfda4ae76c49910a9170ea46.tar.bz2
nixlib-fed248c78e3db25edfda4ae76c49910a9170ea46.tar.lz
nixlib-fed248c78e3db25edfda4ae76c49910a9170ea46.tar.xz
nixlib-fed248c78e3db25edfda4ae76c49910a9170ea46.tar.zst
nixlib-fed248c78e3db25edfda4ae76c49910a9170ea46.zip
sdcc: bump 3.2.0 -> 3.3.0
SDCC 3.3.0 Feature List:

 * Many small improvements in code generation for the z80-related ports - merged smallopts branch
 * lospre (currently enabled for z80-related and hc08-related ports only) - merged lospre branch
 * More efficient initialization of globals in z80, z180, r2k and r3ka ports.
 * Inclusion of tests from the gcc test suite into the sdcc regression test suite led to many bugs being found and fixed.
 * Split sdas390 from sdas8051
 * Merged big parts of ASxxxx v5 into sdas
 * New pic devices (synchronization with MPLABX 1.60). (Except for very old MCU-s.)
 * New script which disassembles those hex files, in which MCS51 code there is. (mcs51-disasm.pl)
 * Added the PIC16F1788 and PIC16F1789 devices.
 * C11 _Alignof operator.
 * C11 _Alignas alignment specifier.
 * C11 _Static_Assert static assertion.

Numerous feature requests and bug fixes are included as well.
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/sdcc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/sdcc/default.nix b/pkgs/development/compilers/sdcc/default.nix
index a22b0d9ea00e..472930d047bf 100644
--- a/pkgs/development/compilers/sdcc/default.nix
+++ b/pkgs/development/compilers/sdcc/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, bison, flex, boost, gputils ? null }:
 
 stdenv.mkDerivation rec {
-  version = "3.2.0";
+  version = "3.3.0";
   name = "sdcc-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/sdcc/sdcc-src-${version}.tar.bz2";
-    sha256 = "15gdl04kqpvmwvvplss5nmp3bz8rhz48dhb0wmb2v9v9sn7qj01d";
+    sha256 = "1pj4hssvq34vbryvxc2jpp2b14cgxp695ygwiax6b7l2kvr62gw7";
   };
 
   # TODO: remove this comment when gputils != null is tested