docs: note Node.js and libsqlite3-dev as source-build prerequisites - #762
Merged
Conversation
roborev: Combined Review (
|
The Make-based build needs Node and system SQLite headers, while the Windows helper builds directly with Go and supplies its own header. The prior blanket prerequisite list incorrectly told Windows users to install tools that their supported build path does not run. Generated with Codex Co-authored-by: Codex <codex@openai.com>
rodboev
marked this pull request as ready for review
September 4, 2026 04:10
roborev: Combined Review (
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Build From Source docs list Go, Bun, and a C/C++ compiler, but a clean
make installon Linux also needs Node.js and, on Debian/Ubuntu,libsqlite3-dev. Both are already provided by CI and the Dockerfile, so the gap is invisible in automation and only surfaces on a developer's own machine.README.md,docs/setup.md, anddocs/development.md. The floor is Node.js 20.19+ on 20.x, 22.13+ on 22.x, or 24+, matching thejsdomengines pulled in by the embed validator thatmake installruns.libsqlite3-dev(Debian/Ubuntu) for thesqlite3.hheader the defaultsqlite_vecbuild compiles against.sqlite3.h: No such filecase to the CGO / Build Errors section indocs/troubleshooting.md.Fixes #659.