diff -Nru octave-3.6.4/debian/changelog octave-3.6.4/debian/changelog --- octave-3.6.4/debian/changelog 2013-08-15 12:12:46.000000000 +0000 +++ octave-3.6.4/debian/changelog 2013-09-05 20:00:39.000000000 +0000 @@ -1,3 +1,9 @@ +octave (3.6.4-4+rpi1) jessie-staging; urgency=low + + * Build with gcc/g++ 4.8 to avoid ICE. + + -- Peter Michael Green Thu, 05 Sep 2013 20:00:26 +0000 + octave (3.6.4-4) unstable; urgency=low [ Rafael Laboissiere ] diff -Nru octave-3.6.4/debian/control octave-3.6.4/debian/control --- octave-3.6.4/debian/control 2013-07-26 14:49:44.000000000 +0000 +++ octave-3.6.4/debian/control 2013-09-05 20:01:03.000000000 +0000 @@ -14,7 +14,7 @@ libqhull-dev, desktop-file-utils, libfltk1.3-dev, libgl2ps-dev, libgraphicsmagick++1-dev, libftgl-dev, libfontconfig1-dev, libqrupdate-dev, libarpack2-dev (>= 2.1+parpack96.dfsg-2), dh-exec, - dpkg-dev (>= 1.16.1) + dpkg-dev (>= 1.16.1), gcc-4.8, g++-4.8 Standards-Version: 3.9.4 Homepage: http://www.octave.org/ Vcs-Git: git://anonscm.debian.org/pkg-octave/octave.git diff -Nru octave-3.6.4/debian/rules octave-3.6.4/debian/rules --- octave-3.6.4/debian/rules 2013-07-26 14:49:44.000000000 +0000 +++ octave-3.6.4/debian/rules 2013-09-05 20:00:23.000000000 +0000 @@ -1,6 +1,10 @@ #!/usr/bin/make -f # -*- makefile -*- +# Use gcc/gcc 4.8 +export CC=gcc-4.8 +export CXX=g++-4.8 + # Uncomment this to turn on verbose mode. export DH_VERBOSE=1