-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows build is broken #72
Comments
Hi there! Sorry for not replying earlier. I recommend that you do a pull request, rather than submitting patches inside a problem report. We can then consider merging it. |
Oh, also, if you could explain (for the benefit of those of us who don't know the Windows platform well) what broke exactly and how this fixes it, it will make it easier to evaluate the pull request. |
Thanks, @db4. I've read lwt_unix.h and other related source code(win32unix/unixsupport.c etc..) and didn't find any problem from your patch except one typo. + return lwt_unix_alloc_job(&(job->job));
+ CAMLreturn(lwt_unix_alloc_job(&(job->job))); here we can just keep the second return statement. |
+ return lwt_unix_alloc_job(&(job->job));
+ CAMLreturn(lwt_unix_alloc_job(&(job->job)));
Indeed. Sorry for that. |
Commit e79232c just destroyed it completely. Here are the fixes that make it compile again but I'm no expert in
lwt
I may do something incorrect.The text was updated successfully, but these errors were encountered: