diff options
author | Andre Heider <a.heider@gmail.com> | 2021-10-02 10:50:49 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2021-10-17 16:29:00 +0200 |
commit | c76300707e8d705d9efc7ed4bb1b7449d0a5fe00 (patch) | |
tree | 418e4b1cc2572f802856751ff9babbe6aec82c44 /package/libs/wolfssl | |
parent | 28d8e6a8711ba78f1684a205e11b0dbd4ff2b2f3 (diff) | |
download | upstream-c76300707e8d705d9efc7ed4bb1b7449d0a5fe00.tar.gz upstream-c76300707e8d705d9efc7ed4bb1b7449d0a5fe00.tar.bz2 upstream-c76300707e8d705d9efc7ed4bb1b7449d0a5fe00.zip |
wolfssl: always build with --enable-reproducible-build
This gates out anything that might introduce semantically frivolous jitter,
maximizing chance of identical object files.
The binary size shrinks by 8kb:
1244352 staging_dir/target-mipsel_24kc_musl/usr/lib/libwolfssl.so.4.8.1.39c36f2f
1236160 staging_dir/target-mipsel_24kc_musl/usr/lib/libwolfssl.so.4.8.1.39c36f2f
Signed-off-by: Andre Heider <a.heider@gmail.com>
Diffstat (limited to 'package/libs/wolfssl')
-rw-r--r-- | package/libs/wolfssl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libs/wolfssl/Makefile b/package/libs/wolfssl/Makefile index e52cff30b1..edbe95b654 100644 --- a/package/libs/wolfssl/Makefile +++ b/package/libs/wolfssl/Makefile @@ -70,6 +70,7 @@ TARGET_LDFLAGS += -flto # --enable-stunnel needed for OpenSSL API compatibility bits CONFIGURE_ARGS += \ + --enable-reproducible-build \ --enable-lighty \ --enable-opensslall \ --enable-opensslextra \ |