From 0061648079fb145a58ecb42766e0437b881ff8d9 Mon Sep 17 00:00:00 2001 From: Will MacCormack Date: Mon, 17 Aug 2026 00:41:14 -0500 Subject: [PATCH] Multithreading disabled --- compiler/build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/build.sbt b/compiler/build.sbt index 7ee24719c..5be63ff8d 100644 --- a/compiler/build.sbt +++ b/compiler/build.sbt @@ -131,6 +131,7 @@ lazy val nativeFpp = (project in file("tools/fpp")) } val config = nativeConfig.value config.withMode(mode).withLTO(lto).withGC(GC.none).withLinkStubs(true) + .withMultithreading(false) .withCompileOptions(config.compileOptions ++ compile) .withLinkingOptions(config.linkingOptions ++ macOSUnwindLinkerOptions ++ link) }