Options (3)
-t, --debugbooleanCompile in debug mode, which causes the resulting parser to write additional information to `stdout`
Example:
bison {{[-t|--debug]}} {{path/to/file.y}}-o, --outputbooleanSpecify the output filename
Example:
bison {{[-o|--output]}} {{path/to/output.c}} {{path/to/file.y}}-v, --verbosebooleanBe verbose when compiling
Example:
bison {{[-v|--verbose]}}Examples (4)
Compile a bison definition file
bison path/to/file.yCompile in debug mode, which causes the resulting parser to write additional information to `stdout`
bison [-t|--debug] path/to/file.ySpecify the output filename
bison [-o|--output] path/to/output.c path/to/file.yBe verbose when compiling
bison [-v|--verbose]made by @shridhargupta | data from tldr-pages