Skip to content

Commit

Permalink
infra: use static compilation for arm archs (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
CallMeLeopoldo authored Feb 25, 2025
1 parent 5ba2277 commit b61ec82
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -53,6 +53,7 @@ nativeImageVersion := "22.3.0"
val osSpecificOptions =
(Platform.os, Platform.arch) match {
case (Platform.OS.Linux, Platform.Arch.Intel) => Seq("--static", "--libc=musl")
case (Platform.OS.Linux, Platform.Arch.Arm) => Seq("--static")
case _ => Seq.empty[String]
}

0 comments on commit b61ec82

Please sign in to comment.