From 99fb31c167e322186c6f576cfaa8f433f4fed117 Mon Sep 17 00:00:00 2001 From: "Randall S. Becker" Date: Thu, 25 Jan 2024 22:11:27 +0000 Subject: Add atexit configuration option to using atexit() in libcrypto at build-time. This fixes an issue with a mix of atexit() usage in DLL and statically linked libcrypto that came out in the test suite on NonStop, which has slightly different DLL unload processing semantics compared to Linux. The change allows a build configuration to select whether to register OPENSSL_cleanup() with atexit() or not, so avoid situations where atexit() registration causes SIGSEGV. INSTALL.md and CHANGES.md have been modified to include and describe this option. The no-atexit option has been added to .github/workflows/run-checker-daily.yml. Fixes: #23135 Signed-of-by: Randall S. Becker Reviewed-by: Matt Caswell Reviewed-by: Neil Horman Reviewed-by: Todd Short (Merged from https://github.com/openssl/openssl/pull/23394) --- .github/workflows/run-checker-daily.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github') diff --git a/.github/workflows/run-checker-daily.yml b/.github/workflows/run-checker-daily.yml index eda5005f68..6d40078122 100644 --- a/.github/workflows/run-checker-daily.yml +++ b/.github/workflows/run-checker-daily.yml @@ -27,6 +27,7 @@ jobs: no-asan, no-asm, no-async, + no-atexit, no-autoalginit, no-autoerrinit, no-autoload-config, -- cgit v1.2.3