Török Edwin
Török Edwin
https://ocaml.org/p/uri/latest/doc/index.html shows a build error about solo5 (what does that have to do with Uri?!): ``` # cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-hvt.0.6.9/include/crt...
Split from https://github.com/ocaml/ocaml/pull/13290. Back in 2018 tools/ci/inria/sanitizers/script claimed that MSAN output is impossible to debug. clang has improved a lot since then, and in fact with clang-18 on Fedora40 it...
I tried naming one of my signals "dist", but Yosys failed to parse the resulting file. Looking at its source code it uses the SystemVerilog reserved word list, even when...
I had a rule that looked somewhat like this: ``` (executable (name networkd) (modes exe) (libraries astring forkexec http_lib integers netlink networklibs rpclib.core rpclib.json)) (install (package xapi-tools) (section sbin) (files...
Add some useful tools (that I had pinned in my local opam switch for a while): * ocaml-print-intf: is useful for creating .mli files in a dune project (or at...
`Random.get_state` is the first function in the `Random` module that returns a `State.t`, but it is rarely the function one should use, unless they really want identical random numbers being...
## Desired Behavior I was trying out the Dune preview on OBuilder, and it has shown this message: ``` File "dune.lock/conf-sqlite3.pkg", line 4, characters 6-16: 4 | (run pkg-config sqlite3))...
## Expected Behavior `dune utop` works ## Actual Behavior ``` dune utop Building ocaml.5.2.0 File "_build/default", line 1, characters 0-0: Error: Library "utop" not found. -> required by _build/default/.utop/utop.bc ```...
Appears to be a findlib bug, but triggered by `Topfind.don't_load_deeply ["utop"];` (it doesn't reproduce without it). https://github.com/ocaml/ocamlfind/issues/82 Workaround is to disable package name auto-completion: ``` diff --git a/src/lib/uTop_complete.ml b/src/lib/uTop_complete.ml index...
I don't see any warnings about thread safety in `mirage-crypto-rng`, but looking at the implementation: ``` rng/fortuna.ml 27:(* XXX Locking!! *) ``` And there various changes to mutable fields without...