Antonin Décimo
Antonin Décimo
This one is _fun_. See how Dune invokes the C compiler and passes `-x c++` to tell the compiler driver to treat the file as C++ instead of C. ```sh...
It does sound like a Dune problem if mccs has to hard-code a specific flag to tell Dune to invoke a C++ compiler instead of a C compiler on C++...
> It has to be noted that mccs uses (lang dune 1.0) and maybe the support is fixed in (lang dune 3.x), by using [foreign_stubs](https://dune.readthedocs.io/en/stable/reference/foreign.html#foreign-stubs) field. Spoiler: no. > It...
> being present in the compiler's existing `native_cppflags` (etc..) ocamlc -config values. What is the role of those C++ specific flags? They are the **C** _**p**re**p**rocessors_ flags, not C++ flags....
The Rust stdlib only allows setting the thread name at thread creation, and then retrieving the thread name from within the thread. See [Naming threads](https://doc.rust-lang.org/std/thread/index.html#naming-threads). As an alternative design mimicking...
This symbol was added in https://github.com/mingw-w64/mingw-w64/commit/3a137bd87ea83d174f4a225568b75cabdbc70852, released in MinGW-w64 12.0 (2024-05-29). The CI machine is using MinGW-w64 9.0 (2021-05-22). As a workaround, we could add the declaration for versions of...
The commits could have been squashed… the history is kind of messy now. For next time?
> What about `stdlib/moreLabels.mli` and `stdlib/templates/hashtbl.template.mli`? Ooops, I cherry-picked Nick's draft and didn't check this. Fixed, thanks!
sorry, the documentation text was off by one space.
Can confirm that it works!