Skip to content

Commit

Permalink
Cross compiles CI: Disable stringop-overflow warning on s390x and m68k
Browse files Browse the repository at this point in the history
These warnings trigger on false positives on these platforms
with recent compiler update.

Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from #19860)
  • Loading branch information
t8m authored and paulidale committed Dec 8, 2022
1 parent aef6b82 commit 8b63a30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cross-compiles.yml
Expand Up @@ -58,7 +58,7 @@ jobs:
}, {
arch: m68k-linux-gnu,
libs: libc6-dev-m68k-cross,
target: -static -m68040 linux-latomic,
target: -static -m68040 linux-latomic -Wno-stringop-overflow,
fips: no,
tests: -test_includes -test_store -test_x509_store
}, {
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
}, {
arch: s390x-linux-gnu,
libs: libc6-dev-s390x-cross,
target: linux64-s390x
target: linux64-s390x -Wno-stringop-overflow
}, {
arch: sh4-linux-gnu,
libs: libc6-dev-sh4-cross,
Expand All @@ -110,7 +110,7 @@ jobs:
}, {
arch: m68k-linux-gnu,
libs: libc6-dev-m68k-cross,
target: -mcfv4e linux-latomic,
target: -mcfv4e linux-latomic -Wno-stringop-overflow,
tests: none
}, {
arch: mips-linux-gnu,
Expand Down

0 comments on commit 8b63a30

Please sign in to comment.