-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace ocamlyacc with cpspg #165
base: master
Are you sure you want to change the base?
Changes from 1 commit
e84d30a
48fa1b9
f8cef78
838baaf
624e1b8
3566295
3012c5b
f89a6e3
c623eba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
(ocamlyacc (modules YaccParser)) | ||
(ocamllex (modules Lexer)) | ||
;(ocamlyacc (modules YaccParser)); | ||
|
||
(rule | ||
(deps YaccParser.mly) | ||
(target YaccParser.ml) | ||
(action (run cpspg --compat -o %{target} %{deps}))) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does cpspg generate There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It does not generate |
||
|
||
(library | ||
(name dblParser) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we remove this line instead of commenting it out? As discussed on the last meeting, we are going to use nice features of cpspg (which are not implemented yet), so I think in the near future, we will be incompatible with ocamlyacc.