We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have the following dune file which compiles fine from command line with dune but not under merlin:
dune
(executable (name main) ; workaround for https://github.com/ocaml/dune/issues/3636 (flags (:standard -w -27 -I +../cerberus/frontend)))
In merling-log buffer I see:
"ocaml": { "include_dirs": [ "/home/lord/src/cheri-c-semantics/ubfinder/+../cerberus/frontend" ],
If I change it to full path:
(executable (name main) ; workaround for https://github.com/ocaml/dune/issues/3636 (flags (:standard -w -27 -I /home/lord/.opam/cerberus/lib/cerberus/frontend)))
it shows in log:
"ocaml": { "include_dirs": [ "/home/lord/.opam/cerberus/lib/cerberus/frontend" ],
and compiles fine.
It looks like an issue with + handling with -I
+
-I
The text was updated successfully, but these errors were encountered:
Add a test illustrating issue ocaml#1388
213aea0
Successfully merging a pull request may close this issue.
I have the following dune file which compiles fine from command line with
dune
but not under merlin:In merling-log buffer I see:
If I change it to full path:
it shows in log:
and compiles fine.
It looks like an issue with
+
handling with-I
The text was updated successfully, but these errors were encountered: