From 20ce25c28e3bd1b1903a7487c652cbbf4af19f17 Mon Sep 17 00:00:00 2001 From: Leandro Salgado Date: Mon, 24 Feb 2025 12:30:42 +0000 Subject: [PATCH] infra: use static compilation for arm archs --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index b46c6f1f..2fcdb5f4 100644 --- a/build.sbt +++ b/build.sbt @@ -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] }