Move build output from src/build/ to ./build (repo root)
The build directory was under src/, which is unusual for a project with a separate source tree. Moving it to the repo root's build/ directory follows the conventional project layout: ./build/ # build output (gitignored) ./src/ # source code only ./oscar64/ # compiler (submodule) Changes: - src/build.sh: BUILD_DIR changed from $SCRIPT_DIR/build to $ROOT/build - .gitignore: replaced src/build/ with build/ - README.md: updated layout tree, build commands, and output path - src/AGENT_CONTEXT.md: updated gitignore reference - tasks.md: replaced all src/build/ with build/
This commit is contained in:
@@ -155,7 +155,7 @@ $21-$24) goes to $D800-$DBE7.
|
||||
## Commit conventions
|
||||
|
||||
- One commit per phase, with a clear `Phase N: <summary>` prefix.
|
||||
- Don't commit generated build artifacts in `src/build/` (gitignored).
|
||||
- Don't commit generated build artifacts in `build/` (gitignored).
|
||||
- Generated data files (e.g. `src/data/processed/*.bin`) are checked
|
||||
in so the build doesn't depend on Python being installed.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user