Eric K Richardson
Eric K Richardson
I would make sure that the `ScalaNativeInit()` happens only once when your iOS app comes up. Then make sure that when you call into Scala Native to get your `CString`...
The audit is very nice as it pulled all the Scala.js 1.x artifacts including all the older versions even published for Scala 2.11.
Yes, I agree. Feel free to categorize it appropriately. Overall to me, it seems to just sort of defy the normal idea of scope. Top level scope is a different...
Realistically, you can't have 2 mains (functions with the same signature) at any scope level so if `@main` is at the top level, it makes sense that you can't have...
> We discussed this today during the compiler meeting and headed towards "won't fix" for this issue. I guess this is pretty disappointing as methods with the same name and...
@joan38 I take it this cross compiles fine to 2.13? Were you able to mitigate some of the binary issues or still need a "waiver" based on the areas of...
That makes total sense. Those discussions about what to make public or not are potentially breaking but decisions should be made. I think you should be very close then if...
One thing to note: I had been trying to allow support using the Windows installed `clang` with Visual Studio 2022 for example as an alternative to downloaded `llvm`. I have...
Note: the Visual Studio vendored clang > 17.0.0 (protected by static assert) will compile to `x86-64`. Use the setting: ```scala nativeConfig ~= { c => c.withTargetTriple("x86-64-pc-windows-msvc") }
@LeeTibbert I don't have a Linux env so I am not sure I can complete this. Any chance you could look into this?