Dov Murik

Results 93 comments of Dov Murik

@LucaStabo Please make sure again that the file you use is the `OVMF_CODE.fd` generated by the build process (and not `OVMF_VARS.fd`).

@LucaStabo Can you please paste again the size `OVMF_CODE.fd` (in bytes) and the hexdump of the last 32 bytes of `OVMF_CODE.fd` ?

Thanks @Sirbu for reporting this. Indeed this library is not actively maintained. We can accept at a PR upgrading mbedtls to the latest version -- both when downloading and building...

I can look at io's Dockerfile (and then later maybe at merging eval_ast). I understand the publicly downloaded binaries are not working newer Ubuntu. What should we do in this...

I looked at debug logs from jq running `repl^mal^step2`. It starts processing the expressions from step2_eval.mal, and in the middle of the big `(def! EVAL ...)` expression I see a...

Okay, found it: jq chokes on `()`; the following patch circumvents the jq bug: ``` diff --git a/impls/mal/step2_eval.mal b/impls/mal/step2_eval.mal index 4d40f942..f5242a8c 100644 --- a/impls/mal/step2_eval.mal +++ b/impls/mal/step2_eval.mal @@ -24,7 +24,7 @@...

But then I run into a new issue in mal step3: ``` mal-user> (+ 1 2) Uncaught exception: 'env-find-str' not found ``` more fun with jq awaits...

Another jq update: ``` dubek@FISHLAPTOP:~/mal/impls/jq (master *) $ ./run user> () () user> (do ()) () user> (if true ()) () user> (def! f (fn* [] ())) Cannot iterate over...

Next chapter on jq: This patch (whitespace changes ignored) fixes one bug: ```diff diff --git a/impls/jq/utils.jq b/impls/jq/utils.jq index 7b0876b7..0ad1ec81 100644 --- a/impls/jq/utils.jq +++ b/impls/jq/utils.jq @@ -1,6 +1,6 @@ def _debug(ex):...

Silly me, my change with the `+ "\n"` at the debug function causes that second problem. Mal step2 tests pass now, I'll keep testing the other steps.