I have a psychological tic which makes me reluctant to use large libraries (like GLib or Boost) in lower-level languages like C and C++. In my mind, I think:
"another ball and chain". Really?
Or is it a stable, reliable platform that enables your application in the first place?
Consider that some folks may like a "too big and ... bloated" library because they use it for other projects and really trust it.
Indeed, they may decline to mess with your software specifically because you avoided using the obvious "too big and ... bloated" library.
I can't comment on GLib, but keep in mind that a lot of the code in Boost is header-only and given the C++ principle of the user only paying for what they're using, the libraries are pretty efficient. There are several libraries that require you to link against them (regex, filesystem come to mind) but they're separate libraries. With Boost you do not link against a large monolithic library but only against the smaller components that you do use.
Of course, the other question is - what is the alternative? Do you want to implement the functionality that is in Boost yourself when you need it? Given that a lot of very competent people have worked on this code and ensured that it works across a multitude of compilers and still is efficient, this might not exactly be a simple undertaking. Plus you're reinventing the wheel, at least to a certain extent. IMHO you can spend this time more productively.
Technically, the answer is that yes, they do. However, these inefficiencies are very seldom practically important. I'm going to assume a statically compiled language like C, C++, or D here.
When an executable is loaded into memory on a modern OS, address space is simply mapped to it. This means that, no matter how big the exectable is, if there are entire page-size blocks of code that aren't used, they will never touch physical memory. You will waste address space, though, and occasionally this can matter a little on 32-bit systems.
When you link to a library, a good linker will usually throw out excess stuff that you don't use, though especially in the case of template instantiations this doesn't always happen. Thus your binaries might be a little bit bigger than strictly necessary.
If you have code that you don't use heavily interleaved with code that you do use, you can end up wasting space in your CPU cache. However, as cache lines are small (usually 64 bytes), this will seldom happen to a practically important extent.
Ask yourself what your target is. Is it a mid end workstation of today - no problem. Is it older hardware or even a limited embedded system, then it might be.
As previous posters have said, just having the code there does not cost you much in performance (it might reduce the locality for the caches and increase loading times).
Boost isn't a big library.
It is a collection of many small libraries. Most of them are so small they're contained in a header or two. Using boost::noncopyable
doesn't drag boost::regex
or boost::thread
into your code. They're different libraries. They're just distributed as part of the same library collection. But you only pay for the ones you use.
But speaking generally, because big libraries do exist, even if Boost isn't one of them:
Is there any basis to my thinking, or am I merely unreasonable and/or ignorant? Even if I only use one or two features of a large library, by linking to that library am I going to incur runtime performance overheads?
No basis, more or less. You can test it yourself.
Write a small C++ program and compile it. Now add a new function to it, one which is never called, but is defined. Compile the program again. Assuming optimizations are enabled, it gets stripped out by the linker because it's unused. So the cost of including additional unused code is zero.
Of course there are exceptions. If the code instantiates any global objects, those might not be removed (that's why including the iostream
header increases the executable size), but in general, you can include as many headers and link to as many libraries as you like, and it won't affect the size, performance or memory usage of your program *as long as you don't use any of the added code.
Another exception is that if you dynamically link to a .dll or .so, the entire library must be distributed, and so it can't be stripped of unused code. But libraries that are statically compiled into your executable (either as static libraries (.lib or .a) or just as included header files can usually be trimmed down by the linker, removing unused symbols.
Excess code doesn't magically make the processor run slower. All it does is sit there occupying a little bit of memory.
If you're statically linking and your linker is at all reasonable, then it will only include the functions that you actually use anyway.