5 ms·
Why do you say this? I respect it, I'm just curious.
by randerson_112 5mo ago
Why do you say this? I respect it, I'm just curious.
- avadodin 5mo agoC/C++ is HR-newspeak out of the 1990s(at the time it was not clear that anyone would still want to use C and MSVC did move their compiler to C++). It signals that the speaker doesn't understand that the two are different languages with very different communities. I don't really think that C users are entirely immune to dependency hell, if that's what OP meant, though. It is orthogonal. As a user, I do believe it sucks when you depend on something that is not included by default on all target platforms(and you fail to include it and maintain it within your source tree*).
- unclad5968 5mo agoWhat part of the build process is different for C?
- avadodin 5mo agoI explained why C/C++ rubbed op the wrong way. It has nothing to do with a build process. It is probably true that more average C programs can be built with plain Makefiles or even without a Makefile than C++, though. You can of course add dependencies on configure scripts, m4, cmake, go, python or rust when building a plain self-contained C program and indeed many do.
- unclad5968 5mo agoWell the post is about build tools, so I assumed we were talking about that.