Comment on Does this compiler exist?
nodoze313@lemmynsfw.com 1 year agoDoes running lint prior not resolve the issue? Isn’t this the entire goal of make, cmake, autotools, etc? Why do you need to run it after? So you can re-process the macros after they are in line? Should just validate the macros before running gcc.
spykyvenator@programming.dev 1 year ago
It is somewhat like running multiple linters and prettifiers but these are hefty tools, the build tool should provide an interface that lets you attach different programs for every little step from code to machine lang
monotremata@kbin.social 1 year ago
It really sounds like you're describing Make. Is there something you need it to do that Make can't handle?