-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Statically link to C++ standard library #2513
Comments
When building from source, the default should continue to be to dynamically link to these libraries, because if you have a given version of gcc/g++ then you should also have the runtime libraries associated with it. (If you're cross-compiling then it's up to you to make sure the target system has them.) |
http://micro.nicholaswilson.me.uk/post/31855915892/rules-of-static-linking-libstdc-libc-libgcc says "Statically linking to libgcc: Depends on the system. Never ever do this on a GNU-based system (ie a system that ships with libgcc or gcc, or where libc was compiled with gcc, or where libc is glibc, etc)." Therefore I think we want |
Note that we MUST make sure that the resulting binary does not link both dynamically and statically to either of these libraries, because disaster will ensue at runtime if that happens. The approach can only work because we're linking statically to all the other libraries that use C++ or OpenMP. |
|
Also note that |
Here is the argument gcc developers originally made for libgcc being provided as a dynamic library and linked that way by default: https://gcc.gnu.org/ml/gcc/2000-04/msg00610.html . Note that it's essentially the same argument as for making libstdc++ linked dynamically by default, except that in practice we have the following differences between the two libraries:
Therefore I believe it's safe to dynamically link against libgcc but statically link against libstdc++ (and libgomp), and that doing so will cause the fewest compatibility problems for the Gitian builds. |
This appears to work:
However, I had some difficulty getting the Zcash build process to use these flags (it was silently dynamically linking to libstdc++ and libgomp despite the |
Here's the error I get:
|
This problem appears to be similar to one we hit before launch when trying to statically compile libsnark: #175 We resolved that by adding |
I can get around the above problem by disabling PIE, which causes the resulting executable to fail the security-hardening check. This is not a good solution. An alternative would be to recompile libgomp as a static library with -fPIC, but that apparently requires a full bootstrap of gcc, and I would rather have a tooth pulled (literally, since I have a broken tooth at the moment) than deal with that if there's any alternative. |
Current state of play:
which looks promising, but the result does not actually have PIE enabled:
Turns out the
But at least now I can reproduce the problem on a small example. |
(Before anyone points it out, I know the above program technically has a race condition on |
Given #3652, it might be possible to remove all of the libsnark code that uses OpenMP, and get rid of the libgomp dependency. |
libgomp was removed as a dependency by #4060. We need to revisit this with just |
I made some progress on this in #4613 (comment) . The current state of play is that I can produce
Unfortunately the corresponding
|
|
This will be fixed by #4613. |
Dynamically linking to these libraries [edit: before #4060, this referred to libstdc++ and libgomp] has in practice caused too many problems for users (#2358, #2257, #1840, #1692, #2468). In principle, it should be possible to just declare a dependency on the right version according to which g++ major version the code was compiled with, and the OS package management should sort it out. But in practice that does not work because commonly used distributions do not provide backports of the necessary packages in a timely fashion (or that can actually be installed without causing conflicts), for the distribution versions that many users are still using and that are supposed to still be supported.
Note that libc, libpthreads and libm are designed to be dynamically linked; we should not change the linking of these. libgcc (the support library for arithmetic primitives and exception handling) is a tricky case; I'm unsure whether to make this statically or dynamically linked given that libstdc++ is static (you can find articles on the web advocating either approach, and neither seems to be without difficulty).
Edit, 2020-08-03: This ticket now refers to statically linking libc++ using Clang. See also #4613 (comment)
The text was updated successfully, but these errors were encountered: