▲ | dvratil 5 days ago | |
This is my gripe with C++ - I have to have a CI pipeline that runs a job with clang-tidy (which is slow), jobs with asan, memsan and tsan, each running the entire test-suite, and ideally also one job for clang and one for gcc to catch all compiler warnings, then finally a job that produces optimized binaries. With Rust I have one job that runs tests and another that runs cargo build --release and I'm done... | ||
▲ | on_the_train 5 days ago | parent [-] | |
That's a pretty heavy setup. Clang tidy is usually enough. And not slow when running locally on newly typed code in resharper for example. |