Eric K Richardson
Eric K Richardson
If you look at these repros they come up on multiple serach terms base on the Github tags / README.md. Like this plus you definitely need sqlite and database as...
This came up when working on removing memset calls in this PR, https://github.com/scala-native/scala-native/pull/2278 First, the Java specification guarantees zero initialization but only for heap objects. https://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.12.5 Second, I am not...
This is a followup to the previous PR, #2744. We make use of `sbt.IO` explicit just to avoid confusion because of the `core.IO` in the build package and we add...
In the documents, we advertise the following: ```scala import scala.scalanative.build._ nativeConfig ~= { _.withLTO(LTO.thin) .withMode(Mode.releaseFast) .withGC(GC.commix) } ``` Now we get the following due to changes: ``` [error] /Users/eric/workspace/scala-native/project/Build.scala:547:13: object...
Edit: There is also one `javax.security` class that needs to be moved out too. Refer to https://github.com/scala-native/scala-native/issues/2600 And the current potential target. https://github.com/lolgab/scala-native-crypto
Currently we have `SCALANATIVE_MIN_HEAP_SIZE` and `SCALANATIVE_MAX_HEAP_SIZE` that can be configured. It would be good to know how big a program can run in 1 mb. Not sure if swap is...
The idea here is to make it as easy as working on the project using sbt to build the site - can have better integration than the current site which...
The idea here is to not have any build or naming logic in the build file. We don't want all the build tools (sbt, Mill, Gradle, Maven, etc.) re-implementing the...
Currently we get the following warning on macOS M1 (arm64). ``` Unexpected architecture in target triple: arm64, defaulting to 64-bit ```
This change starts moving towards late discovery. Previously, discovery occurred early and threw a build exception which was reported to not allow setting `clang` and `clang++` via env vars passed...