CMake#2157
Draft
brendan-nasa wants to merge 28 commits into
Draft
Conversation
brendan-nasa
force-pushed
the
feature/cmake-transition
branch
from
July 8, 2026 21:46
ec035dd to
b3b88d5
Compare
brendan-nasa
force-pushed
the
feature/cmake-transition
branch
from
July 8, 2026 21:47
b3b88d5 to
13095e2
Compare
brendan-nasa
force-pushed
the
feature/cmake-transition
branch
from
July 16, 2026 21:18
d9f2c0e to
772e3ce
Compare
brendan-nasa
force-pushed
the
feature/cmake-transition
branch
from
July 16, 2026 21:19
772e3ce to
113da3f
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.
User simulations keep using plain make. Only building trick now uses cmake. Generated makefiles preserve autotools-built behavior. Autotools (./configure && make) build still works. The cmake build is out-of-tree (conventionally in
build/but can be dev-specified). Out-of-tree builds require patching tools/code/tests that assume builds (TRICK_HOME) are in-treeBuilding with cmake
The three-step bootstrap is only needed on a clean tree (see
cmake/TrickICG.cmake); afterwards plaincmake --build buildrebuilds incrementally, including re-running ICG when headers change.Roadmap
cmake -S. -Bbuildchecks match./configurecmake -S. -Bbuildgenerates equivalentshare/trick/makefiles/config_user.mkbut out-of-treecmake --build buildbuildstrick-ICGand all nine trick archives matchingmakecmake --install build(install into a specific prefix)make test->ctestFuture work