5ec6038f
by Simon McVittie at 2026-07-20T16:51:35+02:00
demos: Use STT_OBJECT instead of @object in the DEMO_ASM_OBJECT_TYPE macro.
As documented in <https://sourceware.org/binutils/docs/as/Type.html>,
the `@object` syntax won't work on all architectures, because `@`
is a comment prefix on some architectures. According to
<https://sourceware.org/binutils/docs/as/ARM_002dChars.html>,
32-bit ARM is one of those architectures.
Use the STT_OBJECT syntax instead, which is recommended in
<https://sourceware.org/binutils/docs/as/Type.html> as being supported
by GNU `as` on all architectures.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=60022
Bug-Debian: https://bugs.debian.org/1142193
Signed-off-by: Simon McVittie <smcv@collabora.com>