From eb0fe6392b406b948ff1492d335cad9b95cb35c6 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 1 Jan 2020 02:44:15 +0000 Subject: [PATCH] bison: add page (#3722) --- pages/common/bison.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/bison.md diff --git a/pages/common/bison.md b/pages/common/bison.md new file mode 100644 index 000000000..e0e8798f5 --- /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`