mirror of
https://github.com/Minres/RISCV-VP.git
synced 2026-04-13 10:51:35 +01:00
corrects -h printout
This commit is contained in:
@@ -27,7 +27,7 @@ CLIParser::CLIParser(int argc, char* argv[])
|
|||||||
po::store(po::parse_command_line(argc, argv, desc), vm_); // can throw
|
po::store(po::parse_command_line(argc, argv, desc), vm_); // can throw
|
||||||
// --help option
|
// --help option
|
||||||
if(vm_.count("help")) {
|
if(vm_.count("help")) {
|
||||||
std::cout << "DBT-RISE-TGC based virtual platform of TGC cores" << std::endl << desc << std::endl;
|
std::cout << "DBT-RISE-RISCV based virtual platform of TGC cores" << std::endl << desc << std::endl;
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
po::notify(vm_); // throws on error, so do after help in case there are any problems
|
po::notify(vm_); // throws on error, so do after help in case there are any problems
|
||||||
|
|||||||
Reference in New Issue
Block a user