Nicolás Ojeda Bär
Nicolás Ojeda Bär
Thanks @MisterDA for the detective work! Playing around I noticed that using `x86_64-w64-mingw32-gcc -r` instead of `x86_64-w64-mingw32-ld -r` seems to work (the `gcc` driver seems to add the "missing" library...
> It looks like the requested changes have been made and merged in [#13589](https://github.com/ocaml/ocaml/pull/13589). Is there any reason to keep this issue open? No. Thanks for the ping!
@MisterDA Unfortunately, this PR breaks compilation on Ubuntu 20.04: ``` nojebar@PERVERSESHEAF:~/ocaml$ make make coldstart make[1]: Entering directory '/home/nojebar/ocaml' CC runtime/bigarray.b.o runtime/bigarray.c: In function ‘caml_ba_compare’: runtime/bigarray.c:389:1: error: control reaches end of...
I think you should replace `TCP_FASTOPEN` by `CURLOPT_TCP_FASTOPEN` in the test file.
It is probably related in some way with #52; you may want to downgrade back to 0.9.1.
@ygrek `TCP_FASTOPEN` is defined in the Windows headers (probably included transitively by `unixsupport.h`) with the value 15.
> @ygrek `TCP_FASTOPEN` is defined in the Windows headers (probably included transitively by `unixsupport.h`) with the value 15. Maybe `#undef TCP_FASTOPEN` could be a way around.
@garrigue: do you have an opinion on the high-level approach?
> Just out of curiosity, is that different from: > > ```ocaml > let bt = Printexc.get_raw_backtrace () in > Printexc.raise_with_backtrace exn bt > ``` > `get_backtrace` has the following...
See also #3368