Cleaning up repo.
This commit is contained in:
parent
014429564d
commit
eb4fa92b55
1 changed files with 24 additions and 7 deletions
31
.gitignore
vendored
31
.gitignore
vendored
|
|
@ -5,15 +5,32 @@ tools/
|
||||||
# Claude Code tool state
|
# Claude Code tool state
|
||||||
.claude/
|
.claude/
|
||||||
|
|
||||||
# Runtime build artifacts: regenerable via runtime/build.sh from
|
# Build artifacts — regenerable from source via runtime/build.sh,
|
||||||
# runtime/src/*.s. The source files (.s, build.sh) are tracked.
|
# demos/build.sh, demos/buildGno.sh, compare/regen.sh, etc. These
|
||||||
runtime/*.o
|
# extensions are never source in this tree: compiled objects, flat
|
||||||
runtime/*.o.bak
|
# binaries, OMF images, linker maps, and reloc sidecars. Hand-written
|
||||||
runtime/*.o.tmp
|
# assembly (runtime/src/*.s, src/llvm/test/**/*.s) keeps the .s extension
|
||||||
|
# and stays tracked, so *.s is deliberately NOT ignored.
|
||||||
|
*.o
|
||||||
|
*.o.bak
|
||||||
|
*.o.tmp
|
||||||
|
*.bin
|
||||||
|
*.omf
|
||||||
|
*.map
|
||||||
|
*.reloc
|
||||||
|
|
||||||
# Per-test build outputs.
|
# Per-target build directories.
|
||||||
tests/coremark/build/
|
tests/coremark/build/
|
||||||
tests/coremark/coreMark.bin
|
tests/lua/build/
|
||||||
|
|
||||||
|
# compare/ regenerables (compare/regen.sh): our backend asm output and
|
||||||
|
# the Calypsi reference listings. Scoped so they can't catch source .s.
|
||||||
|
compare/*.ours.s
|
||||||
|
compare/*.calypsi.lst
|
||||||
|
|
||||||
|
# Stray Calypsi-generated asm at the repo root (not hand-written source).
|
||||||
|
# Root-anchored so it can't catch a real source file elsewhere.
|
||||||
|
/bench_simple.s
|
||||||
|
|
||||||
# Editor / OS
|
# Editor / OS
|
||||||
*.swp
|
*.swp
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue