You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using if stack_pos < 0 then Lwt.return None I was able to make it working although it's not a good fix (BTW under Windows x86, so Windows seems to be actually supported). Looks like a lwt bug?
The text was updated successfully, but these errors were encountered:
ocamlearlybird/ocaml_debug_adapter/debug_conn.ml
Lines 145 to 146 in 1780298
On 32-bit OS
Lwt_io.BE.read_int
reads-1
as-2
and checkf stack_pos = -1
fails. Seelwt
sources:https://github.com/ocsigen/lwt/blob/d791b9bd3e0ec3035796122e002d9e85408304d0/src/unix/lwt_io.ml#L1058-L1069
Using
if stack_pos < 0 then Lwt.return None
I was able to make it working although it's not a good fix (BTW under Windows x86, so Windows seems to be actually supported). Looks like alwt
bug?The text was updated successfully, but these errors were encountered: