-
Notifications
You must be signed in to change notification settings - Fork 12
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 stdio #20
Comments
Ah yeah, I currently haven't implemented any windows-specific options just because StaticCompiler.jl currently doesn't support Windows AFAIU (except I suppose via WSL). Of course, that's no reason we can't add them here in the meanwhile if we can figure out the right llvm IR! Ah good question. My approach to figuring out the right LLVM IR to add has been looking at what gets generated either by (A) |
In principle (A) could work on those |
Here is a link to further investigations to make StaticCompiler possible for Windows: |
Closed by #58 |
Currently ,
stdoutp()
will fail on Windows.To get C stdio on Windows, I think we need to implement the equivalent of these calls.
__iob_func
is defined inmsvcrt.dll
.Do you have a method for converting these to their
llvmcall
equivalents?The text was updated successfully, but these errors were encountered: