Török Edwin

Results 67 comments of Török Edwin

There are also build problems with GCC 12, e.g. I get this on Fedora 37: ``` interp.c: In function 'caml_interprete': interp.c:253:21: error: storing the address of local variable 'lbl_ACC0' in...

Thanks for the hints (I wasn't familiar with how esy works, just opam). I had to use [resolutions](https://esy.sh/docs/en/using-repo-sources-workflow.html) to pin my fork (otherwise the solver failed thinking the version is...

FWIW revery itself still doesn't build, even with that 4.12.1 bugfix, but it gets further and fails here: ``` (cd _build/default && /var/home/edwin/.esy/3_______________________________________________________________/i/ocaml-009b8de8/bin/ocamlc.opt -w -9 -g -bin-annot -I src/api/.ppx_deriving_api.objs/byte -I...

The following change to package.json gets me a bit closer to being able to build it (the versions in package.json appeared to be too old to work with 4.12.1, OTOH...

The next error is a missing `rapidjson` repository, fixed in esy-skia master, so updating the package.json entry fixes that: ``` subprocess.CalledProcessError: Command '['git', 'clone', '--quiet', 'https://skia.googlesource.com/external/github.com/Tencent/rapidjson.git', 'third_party/externals/rapidjson']' returned non-zero exit...

I pushed what I have here: https://github.com/edwintorok/esy-skia/commits/master but as soon as I fix one error there are others, some of which have upstream commits to backport (and some do not...

See also, Lwt_process relies on `Unix.execve`, which is not safe to call in a multi-threaded environment either, as it may end up trying to allocate memory which is not async-signal-safe:...

Duplicate of #11360, there are many issues discussing float printing precision (including #10744), and there was a small documentation improvement merged recently https://github.com/ocaml/ocaml/pull/11353. Probably best to link these issues together...

I implemented this as a separate tool here that parses `dune rules`: https://github.com/edwintorok/dune-compiledb/ It becomes a little bit awkward trying to invoke it from dune itself (dune really doesn't like...

This issue is quite old and the code might've changed since then however 'assertion when CSV > 100 lines' is very similar to the bug I fixed here: https://github.com/owlbarn/owl/pull/639. In...