Join Nostr
2023-12-19 04:42:03 UTC
in reply to

LogicalErzor on Nostr: Cool, got a minimum kernel where all the .{c,s,S,h} files are all the important ones. ...

Cool, got a minimum kernel where all the .{c,s,S,h} files are all the important ones. Initally I didn't want to make a parser like I originally stated, so I attempted to brute force it. Tried various algorithms and doing full rebuilds (partial rebuilds didn't recompile everything), but it would take a couple days

Finally got a way to output all dependecies:
- remove `rm -f $(depfile);` (*.d files contain dependecies)
- run `make` with `-d` (I ran it on --debug=implicit)