3/30/2025 at 1:10:16 AM
Does C(++) still not have a broadly used package manager? If not, that's mind blowing.The header only fad seems to because of a lack of one? IIRC they're more costly compilation wise too.
by parhamn
3/30/2025 at 4:27:50 AM
There isn't as big of a boost as you'd think, since for a templated function you have to #include the entire definition of said function in whatever source file is using it.by jjmarr
3/30/2025 at 8:49:17 AM
Yup, which is why a project that is serious about compilation time splits off type-independent parts into .cpp files that can be compiled separately, improving the speed of compilation for users of that template.I consider being a header-only "library" a code smell. It's purely for convenience, at the cost of compilation speed.
by v1ne
3/30/2025 at 5:53:07 PM
Every project handles this differently, and because of the huge variety of environments and potential build complications in comparison to pretty much every other language, I think it would be very hard to get a supermajority of the C and C++ communities in agreement on a package manager.That being said, there are package managers like vcpkg and conan that work just fine. They will just never be ubiquitous like pip or npm or cargo. Projects are going to continue to want to manage these sorts of issues themselves in a lot of circumstances.
For new projects on a supported platform, I'd recommend going ahead and just using vcpkg. But that's just my opinion. And there is code I work on where that wouldn't be possible. Plus some people just don't like the things that package managers tend to encourage.
by zifpanachr23
3/30/2025 at 8:34:13 PM
>The header only fad seems to because of a lack of one? IIRC they're more costly compilation wise too.Templates cannot be compiled. They have to necesserily be distributed as header files. Furthermore, header files, unlike compiled code are easier to support on a wider variaty of platforms.
They are more constly to include, as you said.
You could technically create concrete classes or functions from the templates by supplying all the necessary type arguments, and compile that. But then the developer using your library will only be able to "use the template" with those particular type arguments. The flexibility that the templates offer is removed.
by yupyupyups
3/30/2025 at 9:12:20 AM
It does, vcpkg and conan, but some folks refuse to learn how to use compiled languages and treat C and C++ as if they were Python or JavaScript.by pjmlp
3/30/2025 at 4:23:52 AM
I also wonder why "header only" is advertized.As for the compilation cost, modern C++ tries to adress that with modules.
by avodonosov
3/30/2025 at 5:25:16 AM
If a third-party dep has a build process any more complicated than dropping the cpp files into your own project, integrating with their build system is going to suck. (No two C++ projects use the same build system)by 01HNNWZ0MV43FF
3/30/2025 at 6:39:35 AM
Thx for the explanation, makes sense.by avodonosov
3/30/2025 at 2:03:13 AM
Conan and vcpkg are the two big ones, and there are several smaller ones. Since they picked up in popularity about a decade ago, it's become increasingly unusual for "header only" to be a selling point for a library (though of course some naturally are if they're fully templated).by quietbritishjim
3/30/2025 at 1:55:47 AM
The STL was originally header-only. Not sure if it still is.by ChrisMarshallNY