From 1c4b7009d5cb49c0bbdc3b1b1a0af3401f49d3ba Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sun, 20 Sep 2026 15:04:45 -0700 Subject: [PATCH] Makefile: build with CGO_ENABLED=0 Co-Authored-By: Claude Fable 5.1 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8fe4ff5..96cf602 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,10 @@ MCR := mcr.svc.mcp.metacircular.net:8443 VERSION := $(shell git describe --tags --always --dirty) LDFLAGS := -trimpath -ldflags="-s -w -X main.version=$(VERSION)" +CGO := CGO_ENABLED=0 mcat: - go build $(LDFLAGS) -o mcat ./cmd/mcat + $(CGO) go build $(LDFLAGS) -o mcat ./cmd/mcat build: go build ./...