commands.sh

bison

all

GNU parser generator.

More info →

Options (3)

-t, --debugboolean

Compile in debug mode, which causes the resulting parser to write additional information to `stdout`

Example: bison {{[-t|--debug]}} {{path/to/file.y}}
-o, --outputboolean

Specify the output filename

Example: bison {{[-o|--output]}} {{path/to/output.c}} {{path/to/file.y}}
-v, --verboseboolean

Be verbose when compiling

Example: bison {{[-v|--verbose]}}

Examples (4)

Compile a bison definition file

bison path/to/file.y

Compile in debug mode, which causes the resulting parser to write additional information to `stdout`

bison [-t|--debug] path/to/file.y

Specify the output filename

bison [-o|--output] path/to/output.c path/to/file.y

Be verbose when compiling

bison [-v|--verbose]
made by @shridhargupta | data from tldr-pages