diff options
author | Thomas Huth <thuth@redhat.com> | 2024-06-03 18:53:24 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2024-06-06 10:26:13 +0100 |
commit | 23ef50ae2d0c557483727db652a18e02b11d272f (patch) | |
tree | 402553711f97d0e449d324b73cddaad740e3f73f | |
parent | 8e3034914a51444a4e5db9b82a8cc711cc1f76ed (diff) | |
download | qemu-23ef50ae2d0c557483727db652a18e02b11d272f.zip qemu-23ef50ae2d0c557483727db652a18e02b11d272f.tar.gz qemu-23ef50ae2d0c557483727db652a18e02b11d272f.tar.bz2 |
.gitlab-ci.d/buildtest.yml: Use -fno-sanitize=function in the clang-system job
The latest version of Clang (version 18 from Fedora 40) now reports
bad function pointer casts as undefined behavior. Unfortunately, we are
still doing this in quite a lot of places in the QEMU code and some of
them are not easy to fix. So for the time being, temporarily switch this
off in the failing clang-system job until all spots in the QEMU sources
have been tackled.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20240601070543.37786-4-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240603175328.3823123-9-alex.bennee@linaro.org>
-rw-r--r-- | .gitlab-ci.d/buildtest.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml index 91c57ef..0eec570 100644 --- a/.gitlab-ci.d/buildtest.yml +++ b/.gitlab-ci.d/buildtest.yml @@ -432,6 +432,7 @@ clang-system: IMAGE: fedora CONFIGURE_ARGS: --cc=clang --cxx=clang++ --extra-cflags=-fsanitize=undefined --extra-cflags=-fno-sanitize-recover=undefined + --extra-cflags=-fno-sanitize=function TARGETS: alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu s390x-softmmu MAKE_CHECK_ARGS: check-qtest check-tcg |