add reference to additional help

This commit is contained in:
Miodrag Milanovic 2025-10-16 17:01:39 +02:00
parent 966f406f1d
commit 5e6a9f6a71
1 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,8 @@ po::options_description HimbaechelCommandHandler::getArchOptions()
specific.add_options()("device", po::value<std::string>(), "name of device to use");
specific.add_options()("chipdb", po::value<std::string>(), "override path to chip database file");
specific.add_options()("list-uarch", "list included uarches");
specific.add_options()("vopt,o", po::value<std::vector<std::string>>(), "options to pass to the himbächel uarch");
specific.add_options()("vopt,o", po::value<std::vector<std::string>>(),
"options to pass to the himbächel uarch (use help as argument to get more info)");
return specific;
}