The lines 44 to 47 of
mg_proto/lib/utils/initialize.cpp in devel branch
void InitCLIArgs(int *argc, char ***argv)
{
theCLIArgs.init(*argc,*argv);
}
should be inside of #ifdef MG_USE_QPHIX as
#ifdef MG_USE_QPHIX
void InitCLIArgs(int *argc, char ***argv)
{
theCLIArgs.init(*argc,*argv);
}
#endif
The lines 44 to 47 of
mg_proto/lib/utils/initialize.cpp in devel branch
should be inside of #ifdef MG_USE_QPHIX as