компиляция scipsuit (linux)

Я скачал scipsuit и попытался "сделать" его. Вот ошибка, которую я получаю. Есть идеи, как это решить?

make[2]: Leaving directory `/shared/shelley/khashab2/SCIP/extracted/zimpl-3.3.2'
-> compiling obj/O.linux.x86_64.gnu.opt/lib/mpsinput.o
In file included from src/basevectors.h:24,
                 from src/svector.h:25,
                 from src/slinsolver.h:27,
                 from src/clufactor.h:23,
                 from src/clufactor.cpp:19:
src/rational.h:119: error: only declarations of constructors can be ‘explicit’
src/rational.h:122: error: only declarations of constructors can be ‘explicit’
In file included from src/basevectors.h:24,
                 from src/spxlpbase.h:28,
                 from src/spxlp.h:24,
                 from src/spxsolver.h:30,
                 from src/spxratiotester.h:26,
                 from src/enter.cpp:23:
src/rational.h:119: error: only declarations of constructors can be ‘explicit’
src/rational.h:122: error: only declarations of constructors can be ‘explicit’
make[3]: *** [obj/O.linux.x86_64.gnu.opt/lib/clufactor.o] Error 1
make[3]: *** Waiting for unfinished jobs....
In file included from src/basevectors.h:24,
                 from src/spxlpbase.h:28,
                 from src/spxlp.h:24,
                 from src/spxsolver.h:30,
                 from src/changesoplex.cpp:22:
src/rational.h:119: error: only declarations of 
... 

Вот версия GCC:

[khashab2@austen extracted]$ gcc --version
gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-11)
Copyright (C) 2010 Free Software Foundation, Inc.

person Daniel    schedule 08.06.2015    source источник


Ответы (1)


Ваша версия GCC слишком старая. Вы можете использовать более новую версию (рекомендуется) или попробовать скомпилировать с LEGACY=true. Это отключит режим рационального решения.

person mattmilten    schedule 09.06.2015