Results 75 issues of Fabian

I'm using the `Runtime_events` module for basic monitoring of GC performance within a process (with the pure OCaml API). I'd like to change the change the directory where the .event...

feature-wish
Stale

In the following snippet ```ocaml type foo = [`Foo] val bar : [>foo] ``` The `foo` on the second line is highlighted as an error.

See: ``` % opam install forkwork The following dependencies couldn't be met: - forkwork → ocaml < 4.06.0 ```

Handling Bigstring (bigarrays of char) directly would be useful to avoid copying.

The exceptions that are raised should be documented, in particular what happens when an invalid image file is loaded and when `Image.read_rgb` is used with invalid bounds. `result`-returning variants would...

I'm trying to use [ppx_inline_test](https://github.com/janestreet/ppx_inline_test) in a project that is being built with solvuu-build. ppx_inline_test has some specific requirements to the build system, which I believe can't be configured in...

Consider a trivial app: ```ocaml open Solvuu_build.Std let app = Project.app ~file:"app.ml" "test_app" let () = Project.basic1 ~project_name:"test" ~version:"dev" [app] ``` ```ocaml print_endline "test" ``` Everything builds fine. A problem...

Currently the following are missing from .merlin files: 1. A `FLG -w` directive according to the `~w` argument 2. `safe_string`, `strict_sequence`, `short_paths` if they are set 3. As a bonus,...

Currently apps can only consist of a single file. It would be convenient if local dependencies of the file (specified by `Project.app ~file`) were also built. The current alternative is...

It's possible to specify several compiler options, such as `#rectypes` and `#warnings` in the toplevel (see `#help`). These should be written to the .ocamlinit file.