a text editor meant to do just barely enough to let me experiment with treesitter and other stuff. meant for personal use by me, will have personal configuration baked in.
as of now, building is mostly useless. instead, try:
rustc src/main.rs -C opt-level=0 --emit asm -o - --crate-name lumberjack | rustfilt > src/lumberjack.s
currently the primary useful property to look out for is the type
checking provided by rustc
or rust-analyzer
. after that would be
ensuring the generated assembly remains minimal. search for
lumberjack
in src/lumberjack.s to find any related code.