fix: Enable CGO for SQLite3 database support
- Set CGO_ENABLED=1 in Makefile for all build targets - Set CGO_ENABLED=1 in Debian build script - Resolves "go-sqlite3 requires cgo to work" runtime error - Ensures proper SQLite3 database functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
779384b748
commit
66a6b5b9a2
2 changed files with 4 additions and 4 deletions
|
|
@ -36,7 +36,7 @@ cd "$PROJECT_DIR"
|
|||
|
||||
# Build the applications
|
||||
echo_info "Building SkyView applications..."
|
||||
export CGO_ENABLED=0
|
||||
export CGO_ENABLED=1
|
||||
export GOOS=linux
|
||||
export GOARCH=amd64
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue