Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 19e06407 | 2024-02-11 19:35:05 | build: Generate the map file from the configured ABI Some linkers require the map file definitions to contain only symbols that are present on the linked object, either in the map file or in the sym file we generate from the map file. This is preparatory work to be able to conditionally include symbols in the man and sym files depending on the ABI definitions. | ||
| 426bf452 | 2023-04-18 00:49:09 | build: Add generated *.sym files to .gitignore | ||
| e7cf8c57 | 2021-11-28 22:44:08 | Switch md5 compatibility logic back to direct linking When using the recent dlsym() based wrapper, we are not requiring any symbol from libmd, as we resolve those dynamically at run-time. We were ending up linking against libmd because in another part of the code we require (depending on the architecture) the SHA512 functions for the getentropy() local implementation. But that function might be provided by the system libc on some systems, which means we end up not linking against libmd at all. To solve this we go back to the previous simpler solution of linking directly, which had the main drawback of then making programs fail to link when not specifying -lmd (on platforms that need it). And then switch the .so link point from a symlink to a linker script, so that we can inject the -lmd library as-needed. This is similar to what glibc is doing. Fixes: commit 31f034e3862debda8615a449b1c11c4d6920dcc7 | ||
| 7389fe8d | 2021-11-27 06:54:49 | build: Ignore backup files | ||
| 4f68a88f | 2021-02-19 06:55:17 | build: Add compiler warnings support Detect as many warnings as possible during configure and enable them if the user did not supply any, so that any such problem can be spotted and fixed. | ||
| 15bd284b | 2021-02-28 05:16:01 | build: Add code coverage support in the GitLab CI | ||
| ee04e8de | 2013-10-10 09:49:04 | build: Set subdir-objects automake option Bump automake minimal version to 1.9. | ||
| dc8b0978 | 2013-05-30 04:09:25 | build: Ignore automake 1.13+ test suite generated files | ||
| dcaa93d9 | 2010-12-17 11:13:04 | build: Switch to autotools | ||
| 8a99226f | 2011-02-23 14:01:06 | Generalize pkg-config file handling Use a make pattern for the .pc rule to allow using more than one .pc file. And generalize the .gitignore entry. |