mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-05 23:03:55 +00:00
bd9e73096b
Both libraries embed their own copy of SQLite, causing duplicate symbol errors on Windows. Add CGO_LDFLAGS to allow multiple definitions.
47 lines
1.7 KiB
Bash
Executable File
47 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# Workflow prepare script for CI
|
|
# Called by shared GitHub Actions workflow before build/test steps
|
|
|
|
set -e
|
|
|
|
# Detect OS
|
|
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
|
|
|
|
# On Windows, install SQLite development headers for CGO
|
|
if [[ "$OS" == mingw* ]] || [[ "$OS" == msys* ]] || [[ "$OS" == cygwin* ]]; then
|
|
echo "Installing SQLite for Windows..."
|
|
|
|
# Download SQLite amalgamation and set up for CGO
|
|
SQLITE_VERSION="3470200"
|
|
SQLITE_YEAR="2024"
|
|
SQLITE_DIR="/c/sqlite"
|
|
SQLITE_URL="https://www.sqlite.org/${SQLITE_YEAR}/sqlite-amalgamation-${SQLITE_VERSION}.zip"
|
|
|
|
mkdir -p "$SQLITE_DIR"
|
|
curl -sSL "$SQLITE_URL" -o /tmp/sqlite.zip
|
|
unzip -q /tmp/sqlite.zip -d /tmp/
|
|
cp /tmp/sqlite-amalgamation-${SQLITE_VERSION}/* "$SQLITE_DIR/"
|
|
rm -rf /tmp/sqlite.zip /tmp/sqlite-amalgamation-${SQLITE_VERSION}
|
|
|
|
# Download Go modules first so we can patch sqlite-vec
|
|
echo "Downloading Go modules..."
|
|
go mod download
|
|
|
|
# Find the sqlite-vec module and copy sqlite3.h there
|
|
SQLITE_VEC_PATH=$(go list -m -f '{{.Dir}}' github.com/asg017/sqlite-vec-go-bindings 2>/dev/null || true)
|
|
if [ -n "$SQLITE_VEC_PATH" ] && [ -d "$SQLITE_VEC_PATH/cgo" ]; then
|
|
# Make module writable (it's read-only by default)
|
|
chmod -R u+w "$SQLITE_VEC_PATH"
|
|
cp "$SQLITE_DIR/sqlite3.h" "$SQLITE_VEC_PATH/cgo/"
|
|
cp "$SQLITE_DIR/sqlite3.c" "$SQLITE_VEC_PATH/cgo/"
|
|
echo "SQLite headers copied to $SQLITE_VEC_PATH/cgo/"
|
|
fi
|
|
|
|
# Tell linker to allow multiple definitions (both go-sqlite3 and sqlite-vec embed SQLite)
|
|
echo "CGO_LDFLAGS=-Wl,--allow-multiple-definition" >> "$GITHUB_ENV"
|
|
echo "SQLite setup complete"
|
|
fi
|
|
|
|
# Download ONNX runtime libraries for current platform
|
|
./scripts/download-onnx-libs.sh auto
|