From e6c55c9538f09ccf1fcdfde6f29f988b9e9c363d Mon Sep 17 00:00:00 2001 From: Egutierrez Date: Sat, 28 Mar 2026 02:04:23 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20a=C3=B1adir=20instrucciones=20de=20buil?= =?UTF-8?q?d=20con=20CGO=20y=20fts5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Documenta que el proyecto requiere CGO_ENABLED=1 y el tag fts5 para compilar y ejecutar tests con soporte SQLite FTS5. Co-Authored-By: Claude Opus 4.6 (1M context) --- .claude/CLAUDE.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.claude/CLAUDE.md b/.claude/CLAUDE.md index d9886dbc..ea792b1c 100644 --- a/.claude/CLAUDE.md +++ b/.claude/CLAUDE.md @@ -58,6 +58,14 @@ Tipos algebraicos: `product` (struct, todos los campos presentes) o `sum` (union - **DiseƱo del schema:** carpeta docs/ - **registry.db:** solo indice, regenerable con `fn index` +## Build + +```bash +# Requiere CGO y tag fts5 para SQLite FTS5 +CGO_ENABLED=1 go build -tags fts5 ./... +CGO_ENABLED=1 go test -tags fts5 ./... +``` + ## CLI (cmd/fn) ```bash