Zach Baylin
Zach Baylin
**OS:** macOS 11 **Problem:** I try building `luv_unix` with `dune build -p luv,luv_unix` and I get the following error: ``` luv_unix.c:9:10: fatal error: 'uv.h' file not found #include ^~~~~~ ```...
@OhadRau and I were looking earlier at extending Notification to Windows support once #672 gets merged. (Sidenote, Linux is easy -- `libnotify` is very straightforward) The problem is, as always,...
Using Crystal 0.25.0, if a query is formulated as such: ```crystal order = Repo.get_by(Order, day: Time.now) ``` with field day being defined of type `Time` in the schema, the following...
I am running Crecto alongside Kemal and have the following route: ```crystal post "/dashboard/student/join_group" do |env| begin user = User.get_from_session(env) group_query = Query .where(group_code: env.params.body["group_code"].as(String)) .limit(1) group = Repo.all(Group, group_query)[0]...
## Desired Behavior Per my discussion with @rgrinberg on Discord earlier, as of now in order to include an object file in compilation, it first needs to be embedded in...
After thinking something was wrong with my tests, I was able to get `gdb` working on Windows to see that Rely is crashing at `ObjectPrinter.extractFields`: ``` Thread 1 received signal...
Hello, I am trying to write a ppx that essentially just drop-in replaces the expression `[%operating_system]` to a string which represents the operating system the user is running on. In...
This was pretty hard to debug because any JS executable that includes `timere` or `timedesc` immediately crashes. To replicate, simply create an empty OCaml file with ``` (libraries timedesc) (modes...
When trying to build metapp (both `master` and 0.4.4), I'm receiving a SIGBUS during (what I presume is) the `metapp.ppx` step of the process. This is on macOS 14.2.1 and...
**Example**: ```ocaml type t = < foo : int > [@@deriving eq] ``` **Expected behavior**: An equality function for `t` is generated, i.e. something like: ```ocaml let equal : t...