Hacker News new | ask | show | jobs
by lupire 1539 days ago
> incrementally building and testing libraries.

Like Make?

1 comments

Make is not very well suited to this problem for a lot of reasons. Perhaps the biggest and least controversial is that it's not hermetic. Makefiles often make assumptions about the build environment, so a build that succeeds for one contributor will fail for another. I'm sure others have done a much better analysis of make vs bazel than I could do here.