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 wrote an example app using webidl, and I am now trying to compile it using dune. My dune file looks like this:
(executables (names main) (libraries core async webidl ppx_deriving.runtime) (preprocess (pps ppx_jane ppx_deriving)))
I then sadly get the error:
gcc: error: /home/avatar/.opam/4.09.0/lib/webidl/webidl.o: No such file or directory
Which is correct, that file isn't there. The directory only contains
./META ./webidl.cmx ./webidl.cmt ./webidl.cmi ./webidl.cmo
Am I trying to use this incorrectly?
The text was updated successfully, but these errors were encountered:
Indeed, once I manually compiled webidl and copied the .o file over to the opam directory, everything worked fine.
Sorry, something went wrong.
No branches or pull requests
I wrote an example app using webidl, and I am now trying to compile it using dune. My dune file looks like this:
I then sadly get the error:
Which is correct, that file isn't there. The directory only contains
Am I trying to use this incorrectly?
The text was updated successfully, but these errors were encountered: