jonahbeckford
jonahbeckford
I can do a PR myself (if it is small-ish like the proposal below) once this design question is answered. #### Context The way I do cross-compilation is using [Dune...
This is an implementation of the cross-compiling design at https://github.com/aantron/luv/issues/129 . It ended up being more complicated because I forgot that the include directories (`-I/usr/include`) in addition to the libraries...
The first commit allows the following on native Windows: ```ocaml #require "feather";; open Feather;; process "ps.exe" [] |> collect stdout;; ``` Notice that `ps.exe` is required for Windows executables (on...
I can submit a PR; this issue will be linked to it if approved. This is just a pre-check to make sure I'm not missing anything. Both https://github.com/ocaml/opam/blob/e229b8f1073b783afbb0537791ebe75c3a5e4d92/src/core/opamSystem.ml#L507-L509 and https://github.com/ocaml/opam/blob/e229b8f1073b783afbb0537791ebe75c3a5e4d92/src/core/opamSystem.ml#L531-L532...
~~This PR is incomplete (not all the tests work yet) but builds with the `cl.exe` Microsoft compiler in a MSYS2 environment. (Specifically on the Windows distribution I announced at )....
* `__attribute__((unused))`: Convert to MSVC non-standard extensions rather than GCC non-standard extensions * Use `_WIN64` in addition to `__x86_64__` to detect 64 bit * Quote shell parameters * Drop to...
The smallest reproducible example is available at https://github.com/diskuv/diskuvbox/blob/e1d1819d4718a061cfa661b8d8ff21d1f27e04d5/support/ . Assuming test files: ```console $ ls -lh _build/test_20m _build/test_5gb -rw-r--r-- 1 root root 20M Aug 7 03:43 _build/test_20m -rw-r--r-- 1 root...
### `dkml-dune-dsl-show.0.1.0` An interpreter for the embedded DSL of Dune that shows the DSL as a real Dune file --- * Homepage: https://github.com/diskuv/dkml-dune-dsl#readme * Source repo: git+https://github.com/diskuv/dkml-dune-dsl.git * Bug tracker:...
This issue has similar symptoms to #59 but different causes. ### Problem With code like: ```ocaml OS.File.write ~mode:0x755 target_fp script ``` we will get: ``` FATAL: rename C:\Users\WDAGUtilityAccount\AppData\Local\opam\playground\.dkml\init-system\scripts\bos-fbb292.tmp to C:\Users\WDAGUtilityAccount\AppData\Local\opam\playground\.dkml\init-system\scripts\cache-vsstudio.bat:...
- No assuming -lpthread and -O2 -fPIC are valid for all compilers - This commit/PR fixes the release profile only, and does not touch the -Wextra used in the dev...