Hacker News new | ask | show | jobs
by pjmlp 1706 days ago
In the meantime two big contenders raised up, vcpkg alongside NuGET from Microsoft (also does Mac and Linux), and conan.

Personally I dislike conan, because package managers should be written in the language of the community they serve, but that is me.

Thankfully, both support binary libraries.

Then there are modules, which on Visual C++'s case are going along quite well.

Anyone that bothers using header only libraries only has themselves to blame for waiting for builds, they are a plague from users that pretend C and C++ are scripting languages.

3 comments

"Header only" might be a bad name, in my perception what it really means is "you can drop the code files into your project; we won't annoy you with our own over-engineered build system".

Slow-compiling APIs can be made in any form, whether "header only" or not. C++ template APIs cannot be compiled separately and can cause long compile times for all transitively dependent translation units.

For example, stb_image.h is a single file that is 1 copy+paste from github away. It compiles quite quickly, and often you will need it alongside only a single .c file in your project, but anyway it's extremely easy to compile it separately. All you have to do is cut+paste the implementation part to a separate .c file.

Copy pasting shit in your repo means you are responsible for maintaining that code and need to keep track of upstream manually. Especially in c++ where memory bugs are prevalent, this sounds like a terrible idea.
Templates can be instanted for common types and consumed via binary libraries.

Also modules support templates just fine.

Indeed, header only libs are just doing PHP like programming.

Unfortunately Microsoft is addicted to telemetry, so vcpkg has that. I did not bother checking for NuGET.

Header-only libraries can give substantial speedups (25% in extreme cases).

You can disable it.

I really would like to see benchmarks versus proper use of binary libraries.

> You can disable it.

I shouldn't have to think about it; I shouldn't have to explicitly opt-out to have privacy. Telemetry should always be opt-in, and not opted-in by default.

The problem is, as a developer trying to fix issues, telemetry can be extremely helpful... but if it's solely opt-in, then virtually nobody will actually use it, and then what's the point.
So your developer issues should trump my user issues?
It tells you to just recompile with -disableMetrics if you want, it's really not a huge deal. It's not like Windows.
Conan has been very useful to me