On Mon, 7 Aug 2017 08:49:19 +0100 Ghislain Vaillant wrote: > control: forwarded -1 https://github.com/Shark-ML/Shark/issues/194
Instead of packaging a snapshot as suggested by upstream, I suggest to explicitly build the package with GCC 6 (as per the attached patch)( until the new upstream release is available which builds successfully with GCC 7. Kind Regards, Bas
diff --git a/debian/control b/debian/control index dabad673..2afa097f 100644 --- a/debian/control +++ b/debian/control @@ -5,6 +5,8 @@ Section: science Priority: optional Build-Depends: cmake, debhelper (>= 10), + gcc-6, + g++-6, libblas-dev | libblas.so, libboost-date-time-dev, libboost-filesystem-dev, diff --git a/debian/rules b/debian/rules index 9e6a203e..0f4ad606 100755 --- a/debian/rules +++ b/debian/rules @@ -9,6 +9,9 @@ export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic export DEB_CXXFLAGS_MAINT_APPEND = -Wall -pedantic export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed +export CC=gcc-6 +export CXX=g++-6 + # Common cmake options. CMAKE_BUILD_OPTIONS = \ -DBUILD_SHARED_LIBS=ON \