updated intro and general instructions
1 parent 444c657 commit 5a435b4a77417f7ab4e557669cfa3dd5aa741b35
@tundra tundra authored on 10 Jan 2022
Showing 1 changed file
View
18
README.md
 
This document is a bit outdated as it does not describe the simplified
build noted below, but the document does describe the overall idea
of what we're trying to accomplish.
 
When this project was first conceived, the idea was to build some
docker instances and use them as "build machines". Initially,
we built a minimal tool set, installed it on another docker
instance, and then built the remainder there.
 
This turned out to be unnecessary. You can do everything on one
machine. For that matter, you don't even have to do the bootstrap
phase separately from the full implementation. You can change the
`makefile` to just build everything in one go, if you prefer. We
still like building, and saving, a minimal bootstrap image just
because it provides a nice baseline for subsequent testing and changes
to the full build.
 
You also don't need to use docker at all. You can use any VM or Linux
machine to do this work so long as the libraries, headers, and
compilers on it are compatible (i.e., close enough in version) to the
machines where you want to run the tools.
 
 
## How To Use The Makefile