Add a fast extension-only build target and BUILDING.md#186
Open
estebanzimanyi wants to merge 2 commits into
Open
Add a fast extension-only build target and BUILDING.md#186estebanzimanyi wants to merge 2 commits into
estebanzimanyi wants to merge 2 commits into
Conversation
9771141 to
75632ee
Compare
75632ee to
2df1dd1
Compare
Adds the SIZEOF_LONG_LONG emission to the rendered pg_config.h so the DuckDB-Wasm (wasm32-emscripten / ILP32) build of MEOS no longer fails the pg_bitutils integer-width check.
2df1dd1 to
fa2de57
Compare
Add make targets ext / ext_debug that rebuild only the MobilityDuck extension against the already-built DuckDB and vcpkg dependencies. Add a precompiled header (src/include/mobilityduck_pch.hpp) so the heavy DuckDB and MEOS headers are parsed once per build rather than in every translation unit, and link the extension with mold when it is installed for a far faster relink, falling back to the default linker otherwise. BUILDING.md documents the one-time full build, the fast iteration loop, path-independent ccache, the vcpkg dependency cache, and binary install for end users.
3e8da05 to
e5d0464
Compare
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.
Add make targets ext / ext_debug that rebuild only the MobilityDuck extension against the already-built DuckDB and vcpkg dependencies, recompiling just the changed MobilityDuck sources and relinking the .duckdb_extension so DuckDB, spatial, icu, parquet and the vcpkg packages are not recompiled. BUILDING.md documents the one-time full build, the fast iteration loop, path-independent ccache across worktrees, the vcpkg dependency cache, and binary install for end users.