I'm trying to parse command line with boost 1.58.0. My code is quite simple and copy\pasted from the tutorials. It looks like that:
try {
po::options_description desc;
desc.add_options()
("version,v", "Display version of application.");
po::positional_options_description p;
p.add("input-file", -1);
try
{
po::store(po::command_line_parser(argc, argv).
options(desc).positional(p).run(), vm);
if ( vm.count("version") )
{
std::cout << "Program version: " << SHUF_T_VERSION << std::endl << "Boost library version: " << BOOST_LIB_VERSION << std::endl;
return false;
}
po::notify(vm); // throws on error, so do after help in case
// there are any problems
}
catch(po::error& e)
{
std::cerr << "ERROR: " << e.what() << std::endl << std::endl;
std::cerr << desc << std::endl;
return false;
}
}
catch(std::exception& e)
{
std::cerr << "Unhandled Exception: "
<< e.what() << ", application will now exit" << std::endl;
return false;
}
return true;
The whole code is here.
The code seems to be correct. The app -v
is processed correctly. But if I include any positional arguement, like app myfile
the po::store()
throws unrecognised option 'myfile'
. Any ideas on why this is hapening?