1

The scala-native site says there is a faster executable option, but it doesn't state how to set it in SBT.

dawid
  • 663
  • 6
  • 12

1 Answers1

1

You can add nativeMode := "release" to your build.sbt

Other options are listed here: https://www.scala-native.org/en/v0.3.9-docs/user/sbt.html#sbt-settings-and-tasks

Devang
  • 26
  • 1
  • 4