Review/mp/fix warnings - #49
Merged
Merged
Conversation
Member
Author
Member
|
+1 |
Member
|
Sorry, I +1'd too quickly. This branch actually does not compile: $ cmake-gui .. $ make 2>build-err.txt $ more build-err.txt /usr/bin/bison: invalid option -- W Try `/usr/bin/bison --help' for more information. make[2]: *** [src/express/expparse.c] Error 1 make[1]: *** [src/express/CMakeFiles/express.dir/all] Error 2 make: *** [all] Error 2 |
Member
|
FYI, $ bison --version bison (GNU Bison) 2.3 Written by Robert Corbett and Richard Stallman. Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
Member
|
$ bison --help
$ bison --help
GNU bison generates parsers for LALR(1) grammars.
Usage: bison [OPTION]... FILE
If a long option shows an argument as mandatory, then it is mandatory
for the equivalent short option also. Similarly for optional arguments.
Operation modes:
-h, --help display this help and exit
-V, --version output version information and exit
--print-localedir output directory containing locale-dependent data
-y, --yacc emulate POSIX yacc
Parser:
-S, --skeleton=FILE specify the skeleton to use
-t, --debug instrument the parser for debugging
--locations enable locations computation
-p, --name-prefix=PREFIX prepend PREFIX to the external symbols
-l, --no-lines don't generate `#line' directives
-n, --no-parser generate the tables only
-k, --token-table include a table of token names
Output:
-d, --defines also produce a header file
-r, --report=THINGS also produce details on the automaton
-v, --verbose same as `--report=state'
-b, --file-prefix=PREFIX specify a PREFIX for output files
-o, --output=FILE leave output to FILE
-g, --graph also produce a VCG description of the automaton
THINGS is a list of comma separated words that can include:
`state' describe the states
`itemset' complete the core item sets with their closure
`look-ahead' explicitly associate look-ahead tokens to items
`solved' describe shift/reduce conflicts solving
`all' include all the above information
`none' disable the report
|
Member
Author
Member
|
Perfect. +1 for merging. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix all but one of the remaining warnings.
Fixes #2