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

This reverts commit b5f3ae76b049d4e712bd539b39d771191bc8978b.
This commit is contained in:
Suzanne Dupéron 2020-02-10 19:54:35 +01:00
parent e6dbe60c2c
commit 76fa4b0549
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 --table --strict --external-tokens LexToken)) (flags -la 1 --table --strict --explain --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 --table --strict --external-tokens LexToken)) (flags -la 1 --table --strict --explain --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 --table --strict --external-tokens LexToken)) (flags -la 1 --table --strict --explain --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 Eparser.mly menhir -la 1 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