Julien Richard-Foy
Julien Richard-Foy
Re-opening because I see many issues related to the aarch64 architecture support (#2614, #2516).
I think a similar problem has been solved in Scala CLI (see https://github.com/VirtusLab/scala-cli/issues/1279). I am pinging @lwronski to see if he can guide us toward a solution here, based on...
Thank you for the report. That confirms my analysis here: https://github.com/VirtusLab/coursier-m1/pull/28#issuecomment-1406564806 Could you please confirm that you can run the binary `bin/sbtn-x86_64-apple-darwin` from the latest [release of sbt](https://github.com/sbt/sbt/releases/download/v1.8.2/sbt-1.8.2.zip) on your...
If we _can_ run those binaries on aarch64, I think we could go that way for now, unless there are drawbacks in this “emulation” mode?
Hi, what’s the status of this issue? @manojo @TiarkRompf
One point to keep in mind about `repProxy` is that method calls to a proxied value are always considered to be effectful (which disables some possible optimizations when the method...
Hi, FYI, here are some features that are in js-scala and for which I’d like to have your feedback: - String interpolator for code generation ([QuoteGen.scala](https://github.com/js-scala/js-scala/blob/master/core/src/main/scala/scala/js/gen/QuoteGen.scala)). Allows to write things...
> Could the constructor and member definition be auto-generated (i.e. remove the implicit def pointOps(p: Rep[Point]) = adtOps(p) line)? Yes, if I use a macro annotation instead of the current...
Cool, so I think I will switch to your implementation :)
Oh, I forgot but I tried to implement a kind of [module generator](https://github.com/js-scala/js-scala/blob/master/core/src/test/scala/scala/js/TestModule.scala#L26-L34) (generated JavaScript code is [here](https://github.com/js-scala/js-scala/blob/master/test-out/module.check)): instead of generating a program we generate an object exposing several methods...