From dabc4c0c091d1bdce8080c43fd2724f635eef8dc Mon Sep 17 00:00:00 2001 From: Chris McClellan Date: Mon, 1 Jun 2026 11:11:19 -0400 Subject: [PATCH] fix(release): build x86_64-unknown-linux-gnu natively instead of with cross The cross Docker image for x86_64-unknown-linux-gnu uses GCC < 10.4, which triggers an aws-lc-sys build-time panic (GCC memcmp bug, gcc.gnu.org/bugzilla/95189). x86_64-unknown-linux-gnu is the native target on the ubuntu-latest runner, so cross-compilation is unnecessary here. Co-Authored-By: Claude Sonnet 4.6 --- .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 748d25a..6be1879 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -92,7 +92,7 @@ jobs: use-cross: false - target: x86_64-unknown-linux-gnu runner: ubuntu-latest - use-cross: true + use-cross: false - target: x86_64-unknown-linux-musl runner: ubuntu-latest use-cross: true