diff -Nru mia-2.4.6/debian/changelog mia-2.4.6/debian/changelog --- mia-2.4.6/debian/changelog 2019-10-23 09:00:04.000000000 +0000 +++ mia-2.4.6/debian/changelog 2019-10-29 13:25:09.000000000 +0000 @@ -1,3 +1,9 @@ +mia (2.4.6-5+rpi1) bullseye-staging; urgency=medium + + * Build with gcc/g++ 8 to hopefully avoid strange c++ error. + + -- Peter Michael Green Tue, 29 Oct 2019 13:25:09 +0000 + mia (2.4.6-5) unstable; urgency=medium [ Jelmer Vernooij ] diff -Nru mia-2.4.6/debian/control mia-2.4.6/debian/control --- mia-2.4.6/debian/control 2019-10-23 09:00:04.000000000 +0000 +++ mia-2.4.6/debian/control 2019-10-29 13:24:59.000000000 +0000 @@ -26,7 +26,9 @@ libvtk7-dev, libvistaio-dev, libxml2-dev, - python3-lxml + python3-lxml, + gcc-8, + g++-8 Build-Depends-Indep: docbook-xsl, doxygen, graphviz, diff -Nru mia-2.4.6/debian/rules mia-2.4.6/debian/rules --- mia-2.4.6/debian/rules 2019-10-23 09:00:04.000000000 +0000 +++ mia-2.4.6/debian/rules 2019-10-29 13:24:40.000000000 +0000 @@ -17,6 +17,8 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +export CC=gcc-8 +export CXX=g++-8 # deduce documentation option (build-indep target) ifeq "" "$(filter %-doc,$(shell dh_listpackages))"