From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Daniel P. Berrangé" <berrange@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Stefan Weil" <sw@weilnetz.de>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PATCH-for-10.2 2/2] tcg/tci: Disable Int128 support
Date: Tue, 2 Dec 2025 19:46:53 +0100 [thread overview]
Message-ID: <20251202184653.33998-3-philmd@linaro.org> (raw)
In-Reply-To: <20251202184653.33998-1-philmd@linaro.org>
Disable Int128 on TCI, otherwise build fails:
In file included from ../../tcg/optimize.c:29:
In file included from include/tcg/tcg-op-common.h:12:
In file included from include/exec/helper-proto-common.h:10:
In file included from include/qemu/atomic128.h:62:
In file included from host/include/aarch64/host/atomic128-cas.h.inc:16:
host/include/generic/host/atomic128-cas.h.inc:37:12: error: initializing 'Int128' (aka 'struct Int128') with an expression of incompatible type '__int128_t' (aka '__int128')
37 | Int128 old = *ptr_align;
| ^ ~~~~~~~~~~
host/include/generic/host/atomic128-cas.h.inc:39:52: warning: incompatible pointer types passing 'Int128 *' (aka 'struct Int128 *') to parameter of type '__int128_t *' (aka '__int128 *') [-Wincompatible-pointer-types]
39 | while (!__atomic_compare_exchange_n(ptr_align, &old, new, true,
| ^~~~
host/include/generic/host/atomic128-cas.h.inc:39:58: error: passing 'Int128' (aka 'struct Int128') to parameter of incompatible type '__int128_t' (aka '__int128')
39 | while (!__atomic_compare_exchange_n(ptr_align, &old, new, true,
| ^~~
host/include/generic/host/atomic128-cas.h.inc:50:12: error: initializing 'Int128' (aka 'struct Int128') with an expression of incompatible type '__int128_t' (aka '__int128')
50 | Int128 old = *ptr_align;
| ^ ~~~~~~~~~~
host/include/generic/host/atomic128-cas.h.inc:52:62: error: invalid operands to binary expression ('Int128' (aka 'struct Int128') and 'Int128')
52 | while (!__atomic_compare_exchange_n(ptr_align, &old, old & val, true,
| ~~~ ^ ~~~
host/include/generic/host/atomic128-cas.h.inc:63:12: error: initializing 'Int128' (aka 'struct Int128') with an expression of incompatible type '__int128_t' (aka '__int128')
63 | Int128 old = *ptr_align;
| ^ ~~~~~~~~~~
host/include/generic/host/atomic128-cas.h.inc:65:62: error: invalid operands to binary expression ('Int128' (aka 'struct Int128') and 'Int128')
65 | while (!__atomic_compare_exchange_n(ptr_align, &old, old | val, true,
| ~~~ ^ ~~~
1 warning and 6 errors generated.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index d9293294d8e..692a62e6c18 100644
--- a/meson.build
+++ b/meson.build
@@ -2996,7 +2996,7 @@ config_host_data.set('CONFIG_ATOMIC64', cc.links('''
# has_int128_type is set to false on Emscripten to avoid errors by libffi
# during runtime.
-has_int128_type = host_os != 'emscripten' and cc.compiles('''
+has_int128_type = host_os != 'emscripten' and tcg_arch != 'tci' and cc.compiles('''
__int128_t a;
__uint128_t b;
int main(void) { b = a; }''')
--
2.51.0
next prev parent reply other threads:[~2025-12-02 18:47 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-02 18:46 [PATCH-for-10.2 0/2] tcg: Fix TCI build on macOS Philippe Mathieu-Daudé
2025-12-02 18:46 ` [PATCH-for-10.2? 1/2] tcg/tci: Disable -Wundef FFI_GO_CLOSURES warning Philippe Mathieu-Daudé
2025-12-03 0:34 ` Richard Henderson
2025-12-02 18:46 ` Philippe Mathieu-Daudé [this message]
2025-12-02 22:30 ` [PATCH-for-10.2 2/2] tcg/tci: Disable Int128 support Richard Henderson
2025-12-03 13:18 ` Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251202184653.33998-3-philmd@linaro.org \
--to=philmd@linaro.org \
--cc=berrange@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=sw@weilnetz.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).