From f82fba9ff5035a42526780572de1483620eafaa9 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 26 Nov 2025 19:25:12 +0000 Subject: [PATCH 1/2] refactor(ci): use cross to build x86_64 linux binaries This change modifies the release workflow to use the 'cross' tool for building the x86_64-unknown-linux-gnu target. This ensures the resulting binary is linked against an older version of glibc, maximizing its compatibility with various Linux distributions. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8cb8d6b..f678c70 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -140,7 +140,7 @@ jobs: # Linux - target: x86_64-unknown-linux-gnu os: ubuntu-latest - use-cross: false + use-cross: true - target: aarch64-unknown-linux-gnu os: ubuntu-latest use-cross: true From 613af35498b62a3abe72b676ee6314cb5d8cdfd9 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 26 Nov 2025 19:39:33 +0000 Subject: [PATCH 2/2] refactor(ci): use cross to build x86_64 linux binaries This change modifies the release workflow to use the 'cross' tool for building the x86_64-unknown-linux-gnu target. This ensures the resulting binary is linked against glibc 2.17, maximizing its compatibility with a wide range of Linux distributions, including older ones.