Antonin Décimo

Results 287 comments of Antonin Décimo

This errors still on macOS 15.3 arm64 on OCaml 5.3 with: ``` [ERROR] The compilation of core_unix.v0.17.0 failed at "dune build -p core_unix -j 7". #=== ERROR while compiling core_unix.v0.17.0...

> @MisterDA Did you find a way to fix the `Time.Zone.local` deprecated error? No, I didn't...

``` root = true [ ``` What happened is that I saved the file without finishing it. The plugin would then spam me with warnings, turning Emacs somewhat unresponsive. I...

The cmd uses the registry to associate loaders with file types. See [`assoc`](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/assoc) and [`ftype`](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/ftype). ```console > assoc .exe .exe=exefile > ftype exefile exefile="%1" %* ``` There's also the `PATHEXT`...

> @MisterDA just to rule out something in your environment, can you try reproducing by calling the command in question directly from `cmd.exe` ? (ie execute `cmd.exe /C ""_build\src\tool\cmdliner ....""`...

> Do you get the error with all commands? eg `cmd.exe /C ""foo\bar""` where `foo/bar.exe` exists? If `test\main.exe` exists, calling it both with and without `.exe` succeeds, because `.exe` is...

> Sorry, but is it the case that the executable `_build\src\tool\cmdliner` does not have the .exe extension on disk? Yes! and my patch adds the `.exe`. ```console > git checkout...

With `system-mingw` the executable on disk has the `.exe` extension, with `system-msvc` the executable on disk doesn't have the extension.

> This is because `gcc` (from `mingw-w64`) automatically adds this extension, but `cl` does not. The fix is to always add the extension in the build system (when under Windows):...