Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-29 | update license of compat and crypto | Philip Kaufmann | |
- change license to be just MIT for all files in compat and crypto - also add missing header end comments - ensure default header include style | |||
2014-09-25 | Apply clang-format on crypto/* and compat/* | Pieter Wuille | |
2014-08-08 | libc-compat: add new symbol that's now needed | Cory Fields | |
2014-06-21 | small cleanup in src/compat .h and .cpp | Philip Kaufmann | |
- add license header - fix include guards - fix indentation | |||
2014-04-11 | build: add symbol for upcoming gcc 4.9's libstdc++ | Cory Fields | |
2014-04-10 | build: add glibc/libstdc++ back-compat stubs | Cory Fields | |
glibc/libstdc++ have added new symbols in later releases. When running a new binary against an older glibc, the run-time linker is unable to resolve the new symbols and the binary refuses to run. This can be fixed by adding our own versions of those functions, so that the build-time linker does not emit undefined symbols for them. This enables our binary releases to work on older Linux distros, while not incurring the downsides of a fully static binary. |