Make menhir less verbose, to see error messages in gitlab.

This commit is contained in:
Suzanne Dupéron 2020-02-10 19:01:26 +01:00
parent 5151a0fd92
commit c71e47f252
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
(menhir (menhir
(merge_into Parser) (merge_into Parser)
(modules ParToken Parser) (modules ParToken Parser)
(flags -la 1 --table --strict --explain --external-tokens LexToken)) (flags --table --strict --external-tokens LexToken))
;; Build of the parser as a library ;; Build of the parser as a library

View File

@ -7,7 +7,7 @@
(menhir (menhir
(merge_into Parser) (merge_into Parser)
(modules ParToken Parser) (modules ParToken Parser)
(flags -la 1 --table --strict --explain --external-tokens LexToken)) (flags --table --strict --external-tokens LexToken))
;; Build of the parser as a library ;; Build of the parser as a library

View File

@ -7,7 +7,7 @@
(menhir (menhir
(merge_into Parser) (merge_into Parser)
(modules ParToken Parser) (modules ParToken Parser)
(flags -la 1 --table --strict --explain --external-tokens LexToken)) (flags --table --strict --external-tokens LexToken))
;; Build of the parser as a library ;; Build of the parser as a library

View File

@ -2,7 +2,7 @@
set -x set -x
ocamllex.opt Escan.mll ocamllex.opt Escan.mll
ocamllex.opt Preproc.mll ocamllex.opt Preproc.mll
menhir -la 1 Eparser.mly menhir Eparser.mly
ocamlfind ocamlopt -strict-sequence -w +A-48-4 -c Etree.ml ocamlfind ocamlopt -strict-sequence -w +A-48-4 -c Etree.ml
ocamlfind ocamlopt -strict-sequence -w +A-48-4 -c Error.ml ocamlfind ocamlopt -strict-sequence -w +A-48-4 -c Error.ml
ocamlfind ocamlopt -strict-sequence -w +A-48-4 -c Etree.ml ocamlfind ocamlopt -strict-sequence -w +A-48-4 -c Etree.ml