Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,12 @@ object sjsonnet extends VersionFileModule {
def releaseMode = ReleaseMode.ReleaseFull
def nativeLTO = LTO.Full
def nativeMultithreading = None
// Concurrent GC: collects on background threads, overlapping collection with
// evaluation. On allocation-heavy configs (jrsonnet realworld suite) this is
// ~13% faster than the default immix and collapses immix's stop-the-world
// latency variance (kube-prometheus ±55ms -> ±5ms), while keeping the same
// RSS (it still frees -- bounded, safe on small machines). Output is identical.
def nativeGC = "commix"

// Build aklomp/base64 as a static library for SIMD-accelerated base64.
// We pin to a specific upstream commit (no git submodule) and clone on
Expand Down
Loading