From 6002b61014ee5a4694553a01a40b7202533f56a9 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Wed, 17 Sep 2025 16:00:31 +0200 Subject: [PATCH] disable cgo for now --- build/ci.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build/ci.go b/build/ci.go index d168070ee8..262b3462e7 100644 --- a/build/ci.go +++ b/build/ci.go @@ -96,9 +96,10 @@ var ( Name: "ziren", GOOS: "linux", GOARCH: "mipsle", - CC: "mipsel-linux-gnu-gcc", - Tags: "ziren", - Env: map[string]string{"GOMIPS": "softfloat"}, + // enable when cgo works + // CC: "mipsel-linux-gnu-gcc", + Tags: "ziren", + Env: map[string]string{"GOMIPS": "softfloat", "CGO_ENABLED": "0"}, }, { Name: "example",