David Allsopp

Results 633 comments of David Allsopp

A subtlety which may want to be addressed explicitly. At present, because the C file generated by bytelink.ml references `caml_startup_code` and `caml_startup_code_exn`, `startup_byt.o` is _guaranteed_ to be linked with `-output-complete-obj`...

It's not opam which is doing it, but setup-ocaml itself cf. [ocaml/setup-ocaml:packages/setup-ocaml-installer.ts#L69](https://github.com/ocaml/setup-ocaml/blob/master/packages/setup-ocaml/src/installer.ts#L64-L70): ```typescript if (PLATFORM === "windows") { await setupCygwin(); if (!cygwinCacheHit) { await saveCygwinCache(); } core.addPath(CYGWIN_ROOT_BIN); } ``` That's...