kc3-lang/libressl

Branch :


Log

Author Commit Date CI Message
b7bf4538 2024-02-12 03:10:44 delete checked-in tap-driver.sh it is autogenerated, so don't keep it in tree
12da3154 2024-01-08 21:57:01 align read only sections on masm/windows to 64 bytes Avoid conflicts where alignment is specified later in the underlying assembly.
168f4bc6 2024-02-04 19:16:14 Windows: Improve the check for endianness when using Visual Studio. Visual studio does not define __BYTE_ORDER__ so all architectures were detected as LITTLE_ENDIAN since both __BYTE_ORDER__ and __ORDER_LITTLE_ENDIAN__ would evaluate to 0 and compare equal. This updates the checks to use CMakes detection of endianness, with a hard error, if this also fails.
33925d16 2024-01-02 03:08:14 cmake: disable ASM for Windows ARM64 With ASM support the builds either exit with an assert or hang (with asserts disabled).
1fbca281 2023-12-19 20:25:54 ci: avoid unnecessary steps in windows workflow
a2e4a3f3 2023-12-12 00:28:52 CI: automatically create release, upload windows builds
5809029c 2023-12-11 21:53:59 windows: minor compat header fixes - posix_win.c: use `snprintf` as-is with _MSC_VER >= 1900 - stdio.h: include socket header before windows.h - pthread.h: delete exec permission from source file
16fb59d6 2023-12-19 17:34:10 ci: tidy windows workflow job name
4f0ae7a9 2023-12-11 17:40:31 Add configure check for strcasecmp
b85c9dac 2023-12-11 16:21:30 cmake: auto-detect `strtonum` Notice that just like in autotools, this detection also doesn't take into account the targeted OS version. Meaning it detects `strtonum` even if targeting e.g. macOS older than release v11 Big Sur (which introduced this funcitions), if the SDK declares it. Wrong detection will either cause a binary broken on older macOS and/or trigger compiler warnings. Ref: https://github.com/libressl/portable/issues/928#issuecomment-1850178282 Ref: https://github.com/libressl/portable/issues/928#issuecomment-1850276298 Prerequisite: https://github.com/libressl/portable/issues/928#issuecomment-1850356408