-
Notifications
You must be signed in to change notification settings - Fork 328
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
OCaml #255
Comments
|
I've got the same dependencies not met error message posted by jkzilla above when following the direction for enabling qcow2 support. I took the prompted suggestion and added a --unlock-base argument to the After returning to hyperkit, I ran
I also attempted this from scratch with a This is running on an instance of MacOS Catalina. I had no prior oCaml installation before acquiring the tools via homebrew as described here. |
Noticing my compiler is 4.12, even more newer than 4.07.1 as reported by the initiator of this ticket. Attempting the steps he took by switching the base compiler version. If that turns out to be a work-around that yields a correct compilable result that links when the downstream make is run, then perhaps the resolution to this issue is just an update to the project README file? Anyhow, I'll see where this gets me. May take a while, given the first experience. |
The
... but it looks like much the same linking error in the final result, with one additional missing symbol (
|
Looks like there were breaking changes in https://github.com/mirage/io-page/releases/tag/v2.4.0 diff --git a/hyperkit.opam b/hyperkit.opam
index 9492872..06948bf 100644
--- a/hyperkit.opam
+++ b/hyperkit.opam
@@ -20,5 +20,6 @@ depends: [
"fmt"
"mirage-unix"
"prometheus-app"
+ "io-page" {= "2.3.0"}
]
synopsis: "Uses the Hypervisor.framework on macOS to run Linux VMs" and instead of running
one can just run
|
When running the
opam install uri qcow.0.10.4 conduit.1.0.0 lwt.3.1.0 qcow-tool mirage-block-unix.2.9.0 conf-libev logs fmt mirage-unix prometheus-app
I received the following error that my OCaml was to new 4.08.0.
So I had to do
opam switch create ocaml-base-compiler 4.07.1
and reran the code.The text was updated successfully, but these errors were encountered: