diff --git a/pages/common/bison.md b/pages/common/bison.md new file mode 100644 index 0000000000..e0e8798f5b --- /dev/null +++ b/pages/common/bison.md @@ -0,0 +1,20 @@ +# bison + +> GNU parser generator. +> More information: . + +- Compile a bison definition file: + +`bison {{path/to/file.y}}` + +- Compile in debug mode, which causes the resulting parser to write additional information to the standard output: + +`bison --debug {{path/to/file.y}}` + +- Specify the output filename: + +`bison --output {{path/to/output.c}} {{path/to/file.y}}` + +- Be verbose when compiling: + +`bison --verbose`