This following patch was originally found at the debian mingw-w64 team's binutils repo located here: https://salsa.debian.org/mingw-w64-team/binutils-mingw-w64.git Invoke the following in the aforementioned repo to see the original patch: $ git show da63f6b:debian/patches/reproducible-import-libraries.patch Description: Make DLL import libraries reproducible Author: Benjamin Moody Bug-Debian: https://bugs.debian.org/915055 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -2844,6 +2844,7 @@ bfd_set_format (outarch, bfd_archive); outarch->has_armap = 1; + outarch->flags |= BFD_DETERMINISTIC_OUTPUT; /* Work out a reasonable size of things to put onto one line. */ ar_head = make_head (outarch); selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/keys/ed25519.pub
AgeCommit message (Expand)Author
2021-12-22tests: Move keys into ./tests/keys/ and add a third ed25519 key....The third key will be used in an upcoming commit. Rename public keys to .pub. * guix/tests/gnupg.scm (%ed25519-3-public-key-file): New variable. (%ed25519-3-secret-key-file): New variable. (%ed25519-2-public-key-file): Renamed from %ed25519bis-public-key-file. (%ed25519-2-secret-key-file): Renamed from %ed25519bis-secret-key-file. * tests/keys/ed25519-3.key: New file. * tests/keys/ed25519-3.sec: New file. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Attila Lendvai