Thomas Gazagnaire
Thomas Gazagnaire
@emillon is this what you are looking after? ``` ❯ ocamlopt foo.ml -o foo ❯ ./foo ❯ codesign -v ./foo ❯ codesign -vv ./foo ./foo: valid on disk ./foo: satisfies...
It was tricky to find but the magic argument is `--dispay` :-) ``` ❯ codesign --verbose=4 --display foo Executable=/Users/thomas/git/cohttp/foo Identifier=foo Format=Mach-O thin (arm64) CodeDirectory v=20400 size=3324 flags=0x20002(adhoc,linker-signed) hashes=101+0 location=embedded VersionPlatform=1...
Feel free to start an implementation of EXT in OCaml :-) I think that would be a fun project!
Not ready to merge, I'm just opening this to start the discussion early.
Added a few tests, it's ready to reviewing now.
Our use of double-close indicates that we are not totally sure about the objects sharing (e.g. it might be that the underlying store is using different backends, but they can...
Thanks. Just to clarify why non-moving is useful: it helps with interfacing with C code, as you know that the GC will not move the objects behind your back. I...
Thanks for your patches! I'm a bit sad to see so much magic in `irmin.top`. I know it's not your fault :-) But I don't think the `install_printer ` is...
Or we can add a `()` only if there are no arguments
I am a bit uncomfortable by adding a `()` to every existing start function: it's a large breaking change for a very narrow use-case. We should document that behaviour, maybe...