3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-23 06:13:41 +00:00

driver: fix help string for --help

This commit is contained in:
Emil J. Tywoniak 2024-09-26 16:43:30 +02:00
parent 2da54f7c6e
commit 5804510001

View file

@ -227,8 +227,8 @@ int main(int argc, char **argv)
("f,frontend", "use <frontend> for the input files on the command line", ("f,frontend", "use <frontend> for the input files on the command line",
cxxopts::value<std::string>(), "<frontend>") cxxopts::value<std::string>(), "<frontend>")
("H", "print the command list") ("H", "print the command list")
("h,help", "print the help message for <command>", ("h,help", "print this help message. If given, print help for <command>.",
cxxopts::value<std::string>(), "<command>") cxxopts::value<std::string>(), "[<command>]")
("s,scriptfile", "execute the commands in <scriptfile>", ("s,scriptfile", "execute the commands in <scriptfile>",
cxxopts::value<std::string>(), "<scriptfile>") cxxopts::value<std::string>(), "<scriptfile>")
("c,tcl-scriptfile", "execute the commands in the TCL <tcl_scriptfile> (see 'help tcl' for details)", ("c,tcl-scriptfile", "execute the commands in the TCL <tcl_scriptfile> (see 'help tcl' for details)",