5 ms·
Wow is this just a shitpost (it was funny!) or do your builds actually take about an hour? That's nuts, if so.
by stackghost 4mo ago
Wow is this just a shitpost (it was funny!) or do your builds actually take about an hour? That's nuts, if so.
- wavemode 4mo agoA fresh build of a large C++ project taking 1 hour does not sound strange at all. If that's an incremental build though (i.e. simply rebuilding after changing a few files), there's something very wrong.
- darknavi 4mo agoFASTBuild has been a game changer for our team recently if you have extra hardware sitting around. https://www.fastbuild.org/docs/home.html https://www.fastbuild.org/docs/home.html
- surajrmal 4mo agoYour org needs better distributed build caching if you can't get that number lower. All builds should be "incremental" with appropriate caching.
- wavemode 3mo agoNot everyone in the world who compiles a C++ project is necessarily doing so for an "org"
- account42 3mo agoIt does if you have an even remotely reasonably specced development machine.
- bdamm 4mo agoYes, although in all honesty the actual compilation is somewhat small compared to the many layers of unit, simulation, integration, and regression tests. All those corner cases take a long time to explore.