docs: add optional build speed-up hints to cargo config

This commit is contained in:
t8y2 2026-06-15 18:52:18 +08:00
parent 21b7125638
commit 6672acf42c
1 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,18 @@
# === Optional build speed-ups (add to your ~/.zshrc or ~/.bashrc; do NOT commit) ===
#
# 1. sccache — compile cache, skips recompiling unchanged deps
# cargo install sccache
# export RUSTC_WRAPPER=sccache
#
# 2. lld — LLVM linker, 2-3x faster linking than the system default
# macOS: brew install lld
# export CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER=/opt/homebrew/bin/lld
# Linux: apt install lld
# export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=lld
#
# Skip DuckDB during development: cargo check --no-default-features
# ===================================================================================
[env] [env]
# Enable SQLite's built-in math functions for rusqlite's bundled libsqlite3. # Enable SQLite's built-in math functions for rusqlite's bundled libsqlite3.
LIBSQLITE3_FLAGS = "SQLITE_ENABLE_MATH_FUNCTIONS" LIBSQLITE3_FLAGS = "SQLITE_ENABLE_MATH_FUNCTIONS"