kc3-lang/libressl

Branch :


Log

Author Commit Date CI Message
abf3be5c 2023-11-07 17:00:56 always check `CMAKE_SYSTEM_PROCESSOR` with `MATCHES` This makes it accept values consistently. Before this patch mingw-w64, Apple and SunOS did not accept a CPU if it had a suffix or prefix (e.g. a triplet), while other targets did.
27486b12 2023-11-07 16:55:52 simplify `MATCHES`/`STREQUAL` syntax
b845c086 2023-11-07 07:47:44 Land #936, fix arm64 builds to not trigger armv4 asm
690b98fe 2023-11-07 11:56:33 cmake: fix arm64 to not trigger armv4 ASM Reported here: https://github.com/libressl/portable/pull/935#issuecomment-1798345787
7a3d8277 2023-11-07 01:02:16 Improve Android CI workflow
4830b1ee 2023-11-05 14:33:56 Land #932, use existing crypto/ssl libs for tls tests
ba0adb9a 2023-11-05 14:31:01 Land #930, consistently use default CA cert location for Windows
89fcb1a3 2023-11-05 08:56:09 also fix ocspcheck and nc, dedupe build logic
2c5abde7 2023-11-04 02:37:34 slim `tls-static` library (used in tests) Instead of including a full copy of libcrypto and libssl in libtls-static, link existing libcrytpo-static and libssl-static to the test targets. This wasn't causing any issue, just unnecessarily duplicating a lot of objects.
d193f43f 2023-11-04 01:24:23 slim down `libtls` By dropping copies of `libcrypto` and `libssl` lib objects from it. This brings back its size to the normal ~100KB from ~4MB. autotools already worked like this.