Eric K Richardson

Results 394 comments of Eric K Richardson

It seems that you have already covered this issue. I hoped the `native.XXX` could be shortened to `XXX`. Also, there is an issue in Scala Native related. https://github.com/scala-native/scala-native/issues/1197

I found another thing that might help. When functions are generated they are given parameter names as `anonymous0, anonymous1, ... anonymousn`. This could probably be `p0, p1, ... pn` for...

Thanks for reporting and your interest in Scala Native. I checked and it looks like `java.nio.channels.AsynchronousChannel` and friends have not been added to the `javalib` in Scala Native yet.

I think there was a discussion about this and we concluded that it was getting ugly so this second approach on top was followed. Perhaps a better approach to using...

I am not sure we support cross compile well based on some of my knowledge about the `tools`. In general, you need to install windows tools on Linux so your...

That is correct then I think. I don't know what your C helper functions look like. Your C helper function `foo_system_is_unix` needs to compile on Windows too. There is no...

I'd be curious to see your configuration once you get to that point. I think @lolgab tried `zig` in the past.

Since this is windows `zig` support, maybe adjust the title?

Won't argue that but if you look how `SCALANATIVE_COMPILE_ALWAYS` is used it is always like the following on the whole file: ```c #if defined(SCALANATIVE_COMPILE_ALWAYS) || defined(__SCALANATIVE_POSIX_PTHREAD) #include ``` Our glue...

That is not really the one you want to use because that is for the glue code. I put a note on this issue which might be better. https://github.com/scala-native/scala-native/issues/3877