diff options
author | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2024-10-16 16:37:32 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2025-01-06 20:46:08 +0100 |
commit | 5f0dab5e74b7cdb1b51217044966dc3927824a4d (patch) | |
tree | 1ace661871ae1666e393522fbc5fab9440da71db | |
parent | Add linux ppc64le runner (diff) | |
download | openssl-5f0dab5e74b7cdb1b51217044966dc3927824a4d.tar.xz openssl-5f0dab5e74b7cdb1b51217044966dc3927824a4d.zip |
Add -fno-sanitize=function to ubsan
Reviewed-by: Saša Nedvědický <sashan@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26269)
-rw-r--r-- | .github/workflows/run-checker-merge.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/run-checker-merge.yml b/.github/workflows/run-checker-merge.yml index 0f29cf7a80..534c28da69 100644 --- a/.github/workflows/run-checker-merge.yml +++ b/.github/workflows/run-checker-merge.yml @@ -18,14 +18,14 @@ jobs: fail-fast: false matrix: opt: [ - enable-asan enable-ubsan no-shared no-asm -DOPENSSL_SMALL_FOOTPRINT, + enable-asan enable-ubsan no-shared no-asm -DOPENSSL_SMALL_FOOTPRINT -fno-sanitize=function, no-dso, no-dynamic-engine, no-ec2m enable-fips, no-engine no-shared, no-err, no-filenames, - enable-ubsan no-asm -DOPENSSL_SMALL_FOOTPRINT -fno-sanitize=alignment, + enable-ubsan no-asm -DOPENSSL_SMALL_FOOTPRINT -fno-sanitize=function, no-module, no-ocsp, no-pinshared, |